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

12 lines
200 B
Go

package api
import (
"github.com/kataras/iris/v12"
"main/jwtSet"
)
func YebLog(party iris.Party) {
party.Get("/", jwtSet.Jwt.Serve, monthLog)
party.Get("/detail", jwtSet.Jwt.Serve, detailLog)
}