Files
web_ylsa/api_iris/service/api/sysinfoExport.go
2025-07-11 16:54:11 +08:00

13 lines
242 B
Go

package api
import (
"github.com/kataras/iris/v12"
"main/jwtSet"
)
func SysInfo(party iris.Party) {
party.Get("/server", jwtSet.Jwt.Serve, getSystem)
party.Get("/", jwtSet.Jwt.Serve, getSysInfo)
//party.Get("/update", updateSysInfo)
}