14 lines
253 B
Go
14 lines
253 B
Go
package dao
|
|
|
|
import "github.com/nose7en/ToyBoomServer/defs"
|
|
|
|
func (q *queryImpl) GetUserByAppleUserID(appleUserID string) (defs.UserGettable, error) {
|
|
|
|
return nil, nil
|
|
}
|
|
|
|
func (m *mutationImpl) CreateUser(user defs.UserGettable) error {
|
|
|
|
return nil
|
|
}
|