aboutsummaryrefslogtreecommitdiffhomepage
path: root/model/session.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/session.go')
-rw-r--r--model/session.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/model/session.go b/model/session.go
index ba62d8a..96e445d 100644
--- a/model/session.go
+++ b/model/session.go
@@ -7,6 +7,7 @@ package model
import "time"
import "fmt"
+// Session represents a user session in the system.
type Session struct {
ID int64
UserID int64
@@ -20,4 +21,5 @@ func (s *Session) String() string {
return fmt.Sprintf("ID=%d, UserID=%d, IP=%s", s.ID, s.UserID, s.IP)
}
+// Sessions represents a list of sessions.
type Sessions []*Session