summaryrefslogtreecommitdiff
path: root/pkg/model/session.go
blob: afa6a7756b79475477e35cb2e435a76521332988 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package model

import (
	"time"
)

type SessionContextKey struct{}

type Session struct {
	Id        string
	AccountId int
	Created   time.Time
	Updated   time.Time
	Data      any
}

func (session *Session) IsExpired() bool {
	// TODO
	return false
}