api/internal/shared/auth.go

7 lines
128 B
Go
Raw Normal View History

2025-07-07 17:45:58 +03:00
package shared
type AuthData struct {
AccessToken string `json:"access_token"`
RefreshToken string `json:"refresh_token"`
}