mirror of
https://codeberg.org/SafeTwitch/safetwitch.git
synced 2024-12-22 13:22:58 -05:00
10 lines
No EOL
257 B
TypeScript
10 lines
No EOL
257 B
TypeScript
import { Router } from 'express';
|
|
import profileRoute from './routes/profile/profileRoute'
|
|
import proxyRoute from './routes/proxy/proxyRoute'
|
|
|
|
const routes = Router();
|
|
|
|
routes.use('/api', profileRoute)
|
|
routes.use('/proxy', proxyRoute)
|
|
|
|
export default routes |