mirror of
https://codeberg.org/SafeTwitch/safetwitch-backend.git
synced 2025-01-03 03:10:05 -05:00
10 lines
243 B
TypeScript
10 lines
243 B
TypeScript
|
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
|