10 lines
463 B
Go
10 lines
463 B
Go
package pkg
|
|
|
|
const ConfigFile = "/config/goma.yml" // Default configuration file
|
|
const accessControlAllowOrigin = "Access-Control-Allow-Origin" // Cors
|
|
const serverName = "Goma"
|
|
const AccessMiddleware = "access" // access middleware
|
|
const BasicAuth = "basic" // basic authentication middleware
|
|
const JWTAuth = "jwt" // JWT authentication middleware
|
|
const OAuth = "OAuth" // OAuth authentication middleware
|