api/internal/shared/auth.go

9 lines
110 B
Go
Raw Normal View History

2025-07-07 17:45:58 +03:00
package shared
import "net/http"
2025-07-07 17:45:58 +03:00
type AuthData struct {
AccessToken string
RefreshCookie *http.Cookie
2025-07-07 17:45:58 +03:00
}