16 lines
188 B
Go
16 lines
188 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
|
|
LastSeenAt time.Time
|
|
}
|