merch-api/pkg/authCheck/interface.go
2026-03-20 14:52:22 +03:00

7 lines
157 B
Go

package authCheck
import "context"
type AuthChecker interface {
VerifySession(ctx context.Context, sessionUuid string, serviceId int32) (string, error)
}