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

13 lines
206 B
Go

package api
import (
"github.com/kataras/iris/v12"
"main/jwtSet"
)
func Weather(p iris.Party) {
p.Get("/", jwtSet.Jwt.Serve, getWeather)
p.Get("/location", getLocation)
p.Get("/test", testWeather)
}