Files
herolib/lib/hero/heroserver/session.v
2025-09-17 07:49:27 +02:00

13 lines
190 B
V

module heroserver
import time
// Active session data
pub struct Session {
pub mut:
session_key string
pubkey string
created_at time.Time
last_activity time.Time
expires_at time.Time
}