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