converge/pkg/models/convergeaccess.go
Erik Brakkee 75e1bd77ba Alternative contextpath is now supported.
This will simplify hosting in cases where you have no control over DNS but only over one domain.
2024-09-08 11:16:49 +02:00

12 lines
172 B
Go

package models
import "time"
type ConvergeAccess struct {
// 's" when secure, "" otherwise
Secure string
BaseUrl string
Location *time.Location
Username string
}