rano/pkg/auth/session.go

18 lines
283 B
Go
Raw Normal View History

2024-11-10 09:22:33 +00:00
package auth
// NewSession for user.
//
// Authenticated
func NewSession(email, pwd string) (*AuthUser, error) {
// authenticate.
// create sesion entry in db
panic("not implemented")
}
// RemoveSession entry from DB
func RemoveSession(sID uint) {
panic("not implemented")
}