package dao type ISessionDAO interface { Set(token string, id int) error Get(token string) (int, error) }