Documentation ¶
Index ¶
- func CreateAccountRouter(router *mux.Router)
- func CreateFolderRouter(router *mux.Router)
- func CreatePlaylistRouter(router *mux.Router)
- type AddSongRequest
- type Folder
- type FullPlaylist
- type LoginRequest
- type LoginResponse
- type Playlist
- type PublicUser
- type RegisterErrorResponse
- type RegisterRequest
- type RegisterSuccessResponse
- type Song
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateAccountRouter ¶
func CreateFolderRouter ¶
func CreatePlaylistRouter ¶
Types ¶
type AddSongRequest ¶
type AddSongRequest struct {
SongId string `json:"songId"`
}
type FullPlaylist ¶
type LoginRequest ¶
type LoginResponse ¶
type LoginResponse struct { ApiKey string `json:"apiKey"` User PublicUser `json:"user"` }
type PublicUser ¶
type RegisterErrorResponse ¶
type RegisterErrorResponse struct {
Error string `json:"error"`
}
type RegisterRequest ¶
type RegisterSuccessResponse ¶
type RegisterSuccessResponse struct { ApiKey string `json:"apiKey"` User PublicUser `json:"user"` }
Click to show internal directories.
Click to hide internal directories.