forex2ledger-1.0.0.0: src/AppId.hs
module AppId (
AppId (..),
) where
import Relude (
Eq,
IsString,
Read,
Show,
Text,
)
newtype AppId = AppId
{ unAppId :: Text
}
deriving newtype (Read, Show, Eq, IsString)
module AppId (
AppId (..),
) where
import Relude (
Eq,
IsString,
Read,
Show,
Text,
)
newtype AppId = AppId
{ unAppId :: Text
}
deriving newtype (Read, Show, Eq, IsString)