diff options
| author | LLLL Colonq <llll@colonq> | 2024-11-18 04:19:01 -0500 |
|---|---|---|
| committer | LLLL Colonq <llll@colonq> | 2024-11-18 04:19:01 -0500 |
| commit | cbc11cf5d23375071c186bf36a292225ed66ec48 (patch) | |
| tree | 97f62e9fbbe32b5103d378e5c69378562b44003b /src | |
| parent | 57e6b3735787f8136ad344a8d170dbf2981d0509 (diff) | |
Initial auth page
Diffstat (limited to 'src')
| -rw-r--r-- | src/Main.purs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Main.purs b/src/Main.purs index 858d289..2e2553e 100644 --- a/src/Main.purs +++ b/src/Main.purs @@ -223,6 +223,10 @@ mainMenu :: Effect Unit mainMenu = launchAff_ do liftEffect $ log "hello from menu" +mainAuth :: Effect Unit +mainAuth = launchAff_ do + liftEffect $ log "hello from auth" + main :: Effect Unit main = case Config.mode of "api" -> mainApi @@ -232,4 +236,5 @@ main = case Config.mode of "button" -> mainButton "register" -> mainRegister "menu" -> mainMenu + "auth" -> mainMenu _ -> throw $ "unknown mode: " <> Config.mode |
