converge/pkg/models/convergeaccess.go
Erik Brakkee 62b51a6d09 work in progress:
* 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.
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
HostPort string
Location *time.Location
Username string
}