feat: update auth and fix url for gitea
Some checks failed
Backend ci / build (push) Failing after 3m12s
Backend ci / build (pull_request) Failing after 3m6s

This commit is contained in:
d3m0k1d
2026-02-12 19:14:23 +03:00
parent 7464828e07
commit 809879971a
5 changed files with 13 additions and 11 deletions

View File

@@ -15,6 +15,6 @@ type PostRepository interface {
}
type AuthRepository interface {
Register(ctx context.Context, user storage.UserReg) error
Register(ctx context.Context, user storage.UserReg) (int, error)
IsRegistered(ctx context.Context, github_id int) (bool, error)
}