mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 14:07:36 +03:00
Removed Beego routing/controllers, converted to Chi.
Also introduced Wire for dependency injection
This commit is contained in:
parent
1f4dfcb853
commit
79701caca3
31 changed files with 1603 additions and 1188 deletions
|
@ -1,15 +1,23 @@
|
|||
package api
|
||||
|
||||
import "github.com/cloudsonic/sonic-server/api/responses"
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
type SystemController struct{ BaseAPIController }
|
||||
"github.com/cloudsonic/sonic-server/api/responses"
|
||||
)
|
||||
|
||||
func (c *SystemController) Ping() {
|
||||
c.SendEmptyResponse()
|
||||
type SystemController struct{}
|
||||
|
||||
func NewSystemController() *SystemController {
|
||||
return &SystemController{}
|
||||
}
|
||||
|
||||
func (c *SystemController) GetLicense() {
|
||||
response := c.NewEmpty()
|
||||
func (c *SystemController) Ping(w http.ResponseWriter, r *http.Request) (*responses.Subsonic, error) {
|
||||
return NewEmpty(), nil
|
||||
}
|
||||
|
||||
func (c *SystemController) GetLicense(w http.ResponseWriter, r *http.Request) (*responses.Subsonic, error) {
|
||||
response := NewEmpty()
|
||||
response.License = &responses.License{Valid: true}
|
||||
c.SendResponse(response)
|
||||
return response, nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue