12 lines
200 B
Go
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)
|
|
}
|