diff options
author | Ben Sima <ben@bsima.me> | 2020-06-26 14:30:48 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-06-26 14:30:48 -0700 |
commit | 1ad6b3248f788cc178162bac5919c0b0fd6f9d39 (patch) | |
tree | 528baffd7371df0e74b95ac872cadc40236d0b50 /Biz/Auth.hs | |
parent | b2312126dd60050c2cebe4ec09b39569d08685e8 (diff) |
biz: open extra port for urbit dev
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 |