index.js 136 B

123456
  1. import express from 'express';
  2. export const routes = express.Router();
  3. import {auth} from './auth/auth.js';
  4. routes.use('/auth', auth)