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 }