stufflog graphql server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
173 B

  1. package models
  2. import "time"
  3. type Session struct {
  4. ID string `db:"session_id"`
  5. UserID string `db:"user_id"`
  6. ExpiryTime time.Time `db:"expiry_time"`
  7. }