initial commit

This commit is contained in:
Krzysztof
2025-08-01 18:01:55 +02:00
commit 9af1af7f92
73 changed files with 6531 additions and 0 deletions

12
session.go Normal file
View File

@@ -0,0 +1,12 @@
package uptimemonitor
import "time"
type Session struct {
ID int64
UserID int64
Uuid string
CreatedAt time.Time
ExpiresAt time.Time
User User
}