Files
vppn/hub/api/types.go

15 lines
206 B
Go

package api
import "vppn/hub/api/db"
type Config = db.Config
type Network = db.Network
type Peer = db.Peer
type Session struct {
SessionID string
SignedIn bool
CreatedAt int64
LastSeenAt int64
}