commento/api/commenter_session.go

15 lines
411 B
Go
Raw Permalink Normal View History

package main
import (
"time"
)
// A session is a 3-field entry of a token, a hex, and a creation date. Do
// not confuse session and token; the token is just an identifying string,
// while the session contains more information.
type commenterSession struct {
CommenterToken string `json:"commenterToken"`
2018-06-20 11:50:11 +08:00
CommenterHex string `json:"commenterHex"`
CreationDate time.Time `json:"creationDate"`
}