go_dreamfactory/modules/web/api_srvlist.go
2022-07-07 19:22:11 +08:00

14 lines
231 B
Go

package web
import (
"go_dreamfactory/lego/sys/gin/engine"
"net/http"
)
//服务列表
func (this *Api_Comp) ServerList(c *engine.Context) {
conf := this.moduleWeb.configure.getServerListConf()
c.JSON(http.StatusOK, conf)
}