Gallery and video support

This commit is contained in:
video-prize-ranch
2022-01-18 16:45:57 -05:00
parent af756d2b0a
commit 87c8618cf5
8 changed files with 48 additions and 3 deletions

View File

@@ -48,8 +48,8 @@ func main() {
app.Get("/a/:albumID", pages.HandleAlbum)
app.Get("/t/:tagID", pages.HandleAlbum)
/*app.Get("/user/:userID", pages.HandleUser)
app.Get("/user/:userID/cover", pages.HandleUserCover)
app.Get("/gallery/:galleryID", pages.HandleGallery)*/
app.Get("/user/:userID/cover", pages.HandleUserCover)*/
app.Get("/gallery/:galleryID", pages.HandleGallery)
app.Listen(":" + viper.GetString("RIMGU_PORT"))
}