merch-api/pkg/authReg/interface.go

10 lines
160 B
Go
Raw Permalink Normal View History

2026-03-20 13:44:37 +03:00
package authReg
import (
"context"
)
type ServiceRegistrar interface {
AuthenticateOrRegister(ctx context.Context, req *RegRequest) (*RegResponse, error)
}