Documentation ¶
Index ¶
- func ConvertURL(c *fiber.Ctx, path string) string
- type ApiConfig
- func (api *ApiConfig) HandlerCreateAlbum(c *fiber.Ctx) error
- func (api *ApiConfig) HandlerCreateArtist(c *fiber.Ctx) error
- func (apiConfig *ApiConfig) HandlerCreateQueueFromAlbum(c *fiber.Ctx) error
- func (api *ApiConfig) HandlerCreateTrack(c *fiber.Ctx) error
- func (apiConfig *ApiConfig) HandlerGetAlbum(c *fiber.Ctx) error
- func (apiConfig *ApiConfig) HandlerGetAllAlbums(c *fiber.Ctx) error
- func (apiConfig *ApiConfig) HandlerGetAllArtists(c *fiber.Ctx) error
- func (apiConfig *ApiConfig) HandlerGetAllTracks(c *fiber.Ctx) error
- func (apiConfig *ApiConfig) HandlerGetArtist(c *fiber.Ctx) error
- func (apiConfig *ApiConfig) HandlerGetTrack(c *fiber.Ctx) error
- type CreateAlbumBody
- type CreateArtistBody
- type CreateTrackBody
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ConvertURL ¶
Types ¶
type ApiConfig ¶
type ApiConfig struct {
// contains filtered or unexported fields
}
func (*ApiConfig) HandlerCreateAlbum ¶
func (*ApiConfig) HandlerCreateArtist ¶
func (*ApiConfig) HandlerCreateQueueFromAlbum ¶
func (*ApiConfig) HandlerCreateTrack ¶
func (*ApiConfig) HandlerGetAlbum ¶
func (*ApiConfig) HandlerGetAllAlbums ¶
func (*ApiConfig) HandlerGetAllArtists ¶
func (*ApiConfig) HandlerGetAllTracks ¶
func (*ApiConfig) HandlerGetArtist ¶
func (*ApiConfig) HandlerGetTrack ¶
type CreateAlbumBody ¶
type CreateArtistBody ¶
type CreateArtistBody struct {
Name string `json:"name" form:"name" validate:"required"`
}
Click to show internal directories.
Click to hide internal directories.