mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
17 lines
347 B
Go
17 lines
347 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/astaxie/beego"
|
|
"github.com/deluan/gosonic/controllers/responses"
|
|
)
|
|
|
|
type GetLicenseController struct{ beego.Controller }
|
|
|
|
// @router /rest/getLicense.view [get]
|
|
func (this *GetLicenseController) Get() {
|
|
response := responses.NewXML(&responses.License{Valid: true})
|
|
this.Ctx.Output.Body(response)
|
|
}
|
|
|
|
|
|
|