mirror of
https://github.com/tiennm99/coolify.git
synced 2026-04-18 11:21:02 +00:00
11 lines
480 B
TypeScript
11 lines
480 B
TypeScript
import { FastifyPluginAsync } from 'fastify';
|
|
import { configureGitHubApp, gitHubEvents, installGithub } from './handlers';
|
|
|
|
const root: FastifyPluginAsync = async (fastify, opts): Promise<void> => {
|
|
fastify.get('/', async (request, reply) => configureGitHubApp(request, reply));
|
|
fastify.get('/install', async (request, reply) => installGithub(request, reply));
|
|
fastify.post('/events', async (request, reply) => gitHubEvents(request, reply));
|
|
};
|
|
|
|
export default root;
|