user package

This commit is contained in:
nquidox 2026-03-02 17:29:43 +03:00
parent f962cd8cd9
commit f159014374
4 changed files with 84 additions and 0 deletions

View file

@ -0,0 +1,5 @@
package user
type Provider interface {
GetUserId(userUuid string) (string, error)
}