tonatona-google-server-api-0.1.0.0: src/Tonatona/Google/Internal.hs
module Tonatona.Google.Internal
( Dsl
, DslBackend(..)
) where
import Tonalude
import Google.Response (Token)
type Dsl env
= ReaderT DslBackend (RIO env)
data DslBackend = DslBackend
{ token :: Token
}
deriving (Show, Eq)