auth provider
This commit is contained in:
parent
08d8450dac
commit
a66873d12d
6 changed files with 432 additions and 0 deletions
7
pkg/authCheck/interface.go
Normal file
7
pkg/authCheck/interface.go
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
package authCheck
|
||||
|
||||
import "context"
|
||||
|
||||
type AuthChecker interface {
|
||||
VerifySession(ctx context.Context, sessionUuid string, serviceId int32) (string, error)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue