go_dreamfactory/modules/gm/api_srvlist.go
2022-07-13 14:14:26 +08:00

14 lines
227 B
Go

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