b92947cdcc
- Removed all Aeson instances from Types.hs - Deleted Server.hs (Orb/WAI routing) - Added Hyperbole form types (LoginForm, SignupForm, etc.) - Removed Server from Sis.hs and cabal file - Updated stack.yaml for Hyperbole dependency resolution - Added local hyperbole copy with GHC 9.10 compat patches - Types.hs, Database.hs, Auth.hs compile successfully
9 lines
158 B
Haskell
9 lines
158 B
Haskell
-- | Top-level re-exports for the Sis server library.
|
|
module Sis (
|
|
module X,
|
|
) where
|
|
|
|
import Sis.Auth as X
|
|
import Sis.Database as X
|
|
import Sis.Types as X
|