2024-10-27 06:10:27 +01:00
|
|
|
package pkg
|
|
|
|
|
|
2024-10-30 16:38:09 +01:00
|
|
|
const ConfigFile = "/config/goma.yml" // Default configuration file
|
|
|
|
|
const accessControlAllowOrigin = "Access-Control-Allow-Origin" // Cors
|
2024-10-29 14:21:55 +01:00
|
|
|
const serverName = "Goma"
|
2024-10-30 16:38:09 +01:00
|
|
|
const AccessMiddleware = "access" // access middleware
|
|
|
|
|
const BasicAuth = "basic" // basic authentication middleware
|
|
|
|
|
const JWTAuth = "jwt" // JWT authentication middleware
|
|
|
|
|
const OAuth = "OAuth" // OAuth authentication middleware
|