mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2025-10-30 05:35:44 +00:00
16 lines
318 B
Go
16 lines
318 B
Go
package types
|
|
|
|
// API config is the configuration for the API
|
|
type APIConfig struct {
|
|
Port int
|
|
Address string
|
|
Secret string
|
|
AppURL string
|
|
CookieSecure bool
|
|
SessionExpiry int
|
|
DisableContinue bool
|
|
GenericName string
|
|
Title string
|
|
Domain string
|
|
}
|