diff options
Diffstat (limited to 'src/app.js')
-rw-r--r-- | src/app.js | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -116,6 +116,15 @@ fastify.register((fastify_repo, opts, done) => fastify_repo.route({ method: "GET", + path: "/tree/*", + handler: async (req, reply) => + { + reply.sendFile("app.html"); + } + }); + + fastify_repo.route({ + method: "GET", path: "/info/refs", handler: (req, reply) => { |