编写了模板注册部分

This commit is contained in:
2024-12-29 11:56:40 +08:00
parent ad4f7b168d
commit ecf4a1db8a
4 changed files with 25 additions and 2 deletions

View File

@@ -12,5 +12,5 @@ func Route(app *echo.Echo) {
staticFiles.Use(middleware.Static("./FrontEnd"))
api := app.Group("/api/")
api.GET("/getAssignment", handler.GetAssignment)
api.GET("getAssignment", handler.GetAssignment)
}