generated from tpl/purs
10 lines
244 B
Haskell
10 lines
244 B
Haskell
module Gitea.Config where
|
|
|
|
import Prelude
|
|
|
|
import Data.URL (URL)
|
|
import Effect (Effect)
|
|
import Gitea.Auth (Authenticated)
|
|
|
|
type Config = { logTrace :: String -> Effect Unit, log :: String -> Effect Unit, baseURI :: URL, auth :: Authenticated }
|