access token excluded from refresh and logout

This commit is contained in:
nquidox 2025-09-10 23:11:05 +03:00
parent 0dc93fcd16
commit 404a52473d
5 changed files with 27 additions and 28 deletions

View file

@ -4,6 +4,6 @@ import "merch-parser-api/internal/shared"
type Auth interface {
Login(userUuid string) (shared.AuthData, error)
Logout(userUuid, refreshUuid string) error
Refresh(userUuid, refreshUuid string) (shared.AuthData, error)
Logout(refreshUuid string) error
Refresh(refreshUuid string) (shared.AuthData, error)
}