Skip to content

Commit bc7125f

Browse files
committed
feat: /1/help/test
1 parent 41761f9 commit bc7125f

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

twitterv1/twitterv1.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,9 @@ func InitServer(config *config.Config) {
191191

192192
// misc
193193
app.Get("/mobile_client_api/decider/:path", MobileClientApiDecider)
194+
AddV1Path(app.Get, "/help/test.:filetype", func(c *fiber.Ctx) error {
195+
return c.SendString("ok")
196+
})
194197

195198
app.Listen(fmt.Sprintf(":%d", config.ServerPort))
196199
}

0 commit comments

Comments
 (0)