merch-api/pkg/authCheck/interface.go

8 lines
157 B
Go
Raw Normal View History

2026-03-20 14:52:22 +03:00
package authCheck
import "context"
type AuthChecker interface {
VerifySession(ctx context.Context, sessionUuid string, serviceId int32) (string, error)
}