diff options
| author | Bobby <[email protected]> | 2026-02-24 15:02:38 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2026-02-24 15:02:38 +0530 |
| commit | c6ff27b989047cf0af8d6cf2aa86c8e80547cf10 (patch) | |
| tree | 55206173780ba073611d72fca135fedfd0322cb4 /router | |
| parent | 17b77153a862ad1eb3babe1e34e748363ac9916c (diff) | |
| download | metachan-c6ff27b989047cf0af8d6cf2aa86c8e80547cf10.tar.xz metachan-c6ff27b989047cf0af8d6cf2aa86c8e80547cf10.zip | |
Add GetAnimeEpisodes endpoint and implement episode retrieval logic
Diffstat (limited to 'router')
| -rw-r--r-- | router/router.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/router/router.go b/router/router.go index 870992b..4d4f832 100644 --- a/router/router.go +++ b/router/router.go @@ -13,6 +13,7 @@ func Initialize(router *fiber.App) { // Anime routes animeRouter := router.Group("/anime") animeRouter.Get("/:id", controllers.GetAnime) + animeRouter.Get("/:id/episodes", controllers.GetAnimeEpisodes) // Anime routes // animeRouter := router.Group("/a") |
