mirror of
https://code.sup39.dev/repos/Wqawg
synced 2024-12-28 11:24:51 +09:00
Use some type alises from Database.Persist.Sql
This commit is contained in:
parent
aa024a3ee4
commit
1b16e2e566
1 changed files with 4 additions and 5 deletions
|
@ -30,12 +30,12 @@ import Data.ByteString.Lazy (fromStrict)
|
||||||
import Data.Foldable (find)
|
import Data.Foldable (find)
|
||||||
import Data.Text (Text, pack, unpack)
|
import Data.Text (Text, pack, unpack)
|
||||||
import Database.Persist
|
import Database.Persist
|
||||||
import Database.Persist.Sql (SqlBackend, ConnectionPool, runSqlPool)
|
import Database.Persist.Sql
|
||||||
import Network.SSH
|
import Network.SSH
|
||||||
import Network.SSH.Channel
|
import Network.SSH.Channel
|
||||||
import Network.SSH.Crypto
|
import Network.SSH.Crypto
|
||||||
import Network.SSH.Session
|
import Network.SSH.Session
|
||||||
import Yesod.Default.Main (LogFunc)
|
--import Yesod.Default.Main (LogFunc)
|
||||||
|
|
||||||
import Vervis.Model
|
import Vervis.Model
|
||||||
import Vervis.Settings
|
import Vervis.Settings
|
||||||
|
@ -47,12 +47,11 @@ import Vervis.Settings
|
||||||
type ChannelBase = LoggingT (ReaderT ConnectionPool IO)
|
type ChannelBase = LoggingT (ReaderT ConnectionPool IO)
|
||||||
type SessionBase = LoggingT (ReaderT ConnectionPool IO)
|
type SessionBase = LoggingT (ReaderT ConnectionPool IO)
|
||||||
--type UserAuthId = PersonId
|
--type UserAuthId = PersonId
|
||||||
type Backend = SqlBackend
|
|
||||||
|
|
||||||
type Channel = ChannelT {-UserAuthId-} ChannelBase
|
type Channel = ChannelT {-UserAuthId-} ChannelBase
|
||||||
type Session = SessionT SessionBase {-UserAuthId-} ChannelBase
|
type Session = SessionT SessionBase {-UserAuthId-} ChannelBase
|
||||||
type SshChanDB = ReaderT Backend Channel
|
type SshChanDB = SqlPersistT Channel
|
||||||
type SshSessDB = ReaderT Backend Session
|
type SshSessDB = SqlPersistT Session
|
||||||
|
|
||||||
src :: Text
|
src :: Text
|
||||||
src = "SSH"
|
src = "SSH"
|
||||||
|
|
Loading…
Reference in a new issue