created: auth provider

This commit is contained in:
nquidox 2025-07-07 17:45:58 +03:00
parent f5162fcd66
commit 099a586484
6 changed files with 185 additions and 0 deletions

6
internal/shared/auth.go Normal file
View file

@ -0,0 +1,6 @@
package shared
type AuthData struct {
AccessToken string `json:"access_token"`
RefreshToken string `json:"refresh_token"`
}