mirror of
https://github.com/makayabou/asg-server.git
synced 2026-05-02 17:43:36 +02:00
13 lines
189 B
Go
13 lines
189 B
Go
package handlers
|
|
|
|
type GatewayMode string
|
|
|
|
const (
|
|
GatewayModePrivate GatewayMode = "private"
|
|
GatewayModePublic GatewayMode = "public"
|
|
)
|
|
|
|
type Config struct {
|
|
GatewayMode GatewayMode
|
|
}
|