This will simplify hosting in cases where you have no control over DNS but only over one domain.
12 lines
172 B
Go
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
|
|
}
|