package models import "time" type Session struct { ID string User *User } type User struct { ID uint64 Username string Login string PasswordHash []byte CreatedAt time.Time UpdatedAt time.Time }