mirror of
https://github.com/Forceu/Gokapi.git
synced 2026-01-17 22:39:34 -06:00
8 lines
113 B
Go
8 lines
113 B
Go
package models
|
|
|
|
// Session contains cookie parameter
|
|
type Session struct {
|
|
RenewAt int64
|
|
ValidUntil int64
|
|
}
|