* usage page now has more dynamic part where user can enter id and publis ssh keys and the server will generate the appropriate commmands to execute depending on the local and remote shell.
12 lines
172 B
Go
12 lines
172 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type ConvergeAccess struct {
|
|
// 's" when secure, "" otherwise
|
|
Secure string
|
|
HostPort string
|
|
Location *time.Location
|
|
Username string
|
|
}
|