Files
vppn/hub/api/types.go
2026-06-13 14:44:25 +02:00

18 lines
227 B
Go

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