auth provider

This commit is contained in:
nquidox 2026-03-20 14:52:22 +03:00
parent 08d8450dac
commit a66873d12d
6 changed files with 432 additions and 0 deletions

View file

@ -0,0 +1,7 @@
package authCheck
import "context"
type AuthChecker interface {
VerifySession(ctx context.Context, sessionUuid string, serviceId int32) (string, error)
}