converge/pkg/models/convergeaccess.go
Erik Brakkee 1b76add15b Alternative contextpath is now supported.
This will simplify hosting in cases where you have no control over DNS but only over one domain.
2024-08-03 23:10:57 +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
}