diff options
Diffstat (limited to 'Biz/Auth.hs')
-rw-r--r-- | Biz/Auth.hs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Biz/Auth.hs b/Biz/Auth.hs new file mode 100644 index 0000000..ce2a716 --- /dev/null +++ b/Biz/Auth.hs @@ -0,0 +1,12 @@ +module Biz.Auth where + +import Data.ByteString (ByteString) +import Data.Text (Text) +import Miso.String + +data Error + = BadUsername + | BadPassword + +type Password = MisoString +type Username = MisoString |