This commit is contained in:
2023-03-08 20:15:56 +08:00
commit 30ffada1da
13 changed files with 1295 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
package main
func main() {
r := Router()
r.LoadHTMLGlob("tmpl/*")
r.Static("/statics", "./statics")
r.Run(":88")
}