Add official manga

Signed-off-by: Yuan Si <do4suki@gmail.com>
This commit is contained in:
2023-04-01 10:57:56 +08:00
parent 4b02d2fd0f
commit 6ef676f712
64 changed files with 426 additions and 1 deletions
+6
View File
@@ -84,6 +84,12 @@ func main() {
r.GET("/webview.php/announce/index", handler.AnnounceIndexHandler)
// Server APIs
// Web
// Manga
r.GET("/manga", func(ctx *gin.Context) {
ctx.HTML(http.StatusOK, "manga.tmpl", gin.H{})
})
r.Run(":8080") // listen and serve on 0.0.0.0:8080 (for windows "localhost:8080")
}
}