feat: update callback handler and repository for user
All checks were successful
Backend ci / build (push) Successful in 3m23s

This commit is contained in:
d3m0k1d
2026-02-10 22:45:27 +03:00
parent a58e0f4451
commit 4a5c42ca06
6 changed files with 63 additions and 7 deletions

View File

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