rano/pkg/auth/auth.go
2024-11-10 14:52:33 +05:30

10 lines
183 B
Go

package auth
import "gitserver.in/patialtech/rano/graph/model"
type AuthUser = model.AuthUser
func authenticate(email, pwd string) (*AuthUser, error) {
panic("not implemented")
}