init repo

This commit is contained in:
VaalaCat
2024-08-28 00:02:28 +08:00
committed by vaalacat
commit 13148b95e3
97 changed files with 10214 additions and 0 deletions

13
dao/user.go Normal file
View File

@@ -0,0 +1,13 @@
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
}