14 lines
231 B
Go
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)
|
|
}
|