0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch-backend.git synced 2025-01-03 03:10:05 -05:00
safetwitch-backend/routes.ts

10 lines
243 B
TypeScript
Raw Permalink Normal View History

2023-03-24 06:41:33 -05:00
import { Router } from 'express';
import profileRoute from './routes/profileRoute'
import proxyRoute from './routes/proxyRoute'
const routes = Router();
routes.use('/api', profileRoute)
routes.use('/proxy', proxyRoute)
export default routes