10 lines
183 B
Go
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")
|
|
}
|