diff options
author | Ben Sima <ben@bsima.me> | 2020-12-24 14:24:16 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-12-24 14:24:16 -0500 |
commit | 6eaaf3d8ce6025932990de6fa697d14c9651be76 (patch) | |
tree | 65ca4a0dd0393db98d9a6067bbbef789469e8122 /Biz/Auth.hs | |
parent | 6a4a8aa37044d578c95dea145b9605908b8dc28d (diff) |
linting fixes and cleanup
Diffstat (limited to 'Biz/Auth.hs')
-rw-r--r-- | Biz/Auth.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Biz/Auth.hs b/Biz/Auth.hs index 2f4d17a..3648395 100644 --- a/Biz/Auth.hs +++ b/Biz/Auth.hs @@ -2,7 +2,8 @@ module Biz.Auth ( Error (..), Password, Username, - ) where + ) +where import Data.ByteString (ByteString) import Data.Text (Text) @@ -13,4 +14,5 @@ data Error | BadPassword type Password = MisoString + type Username = MisoString |