package models type AuthRequestBody struct { UserID string `json:"userId"` Signature string `json:"signature"` } type RefreshResponse struct { AccessToken string `json:"accessToken"` RefreshToken string `json:"refreshToken"` } const AuthJWTDecodedUserIDKey = "userID" const AuthJWTDecodedAccessTokenKey = "access-token"