rano/pkg/auth/auth.go

10 lines
183 B
Go
Raw Normal View History

2024-11-10 09:22:33 +00:00
package auth
import "gitserver.in/patialtech/rano/graph/model"
type AuthUser = model.AuthUser
func authenticate(email, pwd string) (*AuthUser, error) {
panic("not implemented")
}