merch-api/internal/user/interface.go

8 lines
124 B
Go
Raw Normal View History

2026-03-02 17:29:43 +03:00
package user
2026-03-04 17:02:11 +03:00
import "context"
2026-03-02 17:29:43 +03:00
type Provider interface {
2026-03-06 19:07:33 +03:00
GetUserId(ctx context.Context, userUuid string) (int64, error)
2026-03-02 17:29:43 +03:00
}