2023-11-26 23:04:09 +00:00
|
|
|
module Gitea.Config where
|
|
|
|
|
2023-11-28 18:10:17 +00:00
|
|
|
import Prelude
|
|
|
|
|
2023-11-26 23:04:09 +00:00
|
|
|
import Data.URL (URL)
|
2023-11-28 18:10:17 +00:00
|
|
|
import Effect (Effect)
|
2023-11-26 23:04:09 +00:00
|
|
|
import Gitea.Auth (Authenticated)
|
|
|
|
|
2023-11-28 18:10:17 +00:00
|
|
|
type Config = { logTrace :: String -> Effect Unit, log :: String -> Effect Unit, baseURI :: URL, auth :: Authenticated }
|