api/internal/shared/auth.go

8 lines
110 B
Go

package shared
import "net/http"
type AuthData struct {
AccessToken string
RefreshCookie *http.Cookie
}