mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 22:17:37 +03:00
Grouped some API controllers by functionality
This commit is contained in:
parent
7161325716
commit
0d8c6b58db
13 changed files with 278 additions and 340 deletions
15
api/system.go
Normal file
15
api/system.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
package api
|
||||
|
||||
import "github.com/deluan/gosonic/api/responses"
|
||||
|
||||
type SystemController struct{ BaseAPIController }
|
||||
|
||||
func (c *SystemController) Ping() {
|
||||
c.SendResponse(c.NewEmpty())
|
||||
}
|
||||
|
||||
func (c *SystemController) GetLicense() {
|
||||
response := c.NewEmpty()
|
||||
response.License = &responses.License{Valid: true}
|
||||
c.SendResponse(response)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue