Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jilv220 committed Nov 10, 2023
1 parent 0f6238b commit 1ecb948
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import express from 'express';
import rooterRouter from './routes/root.ts';
import rootRouter from './routes/root.ts';
import 'dotenv/config';

const app = express();
Expand All @@ -14,7 +14,7 @@ app.use(
app.use(express.json());

// Routes
app.use('/', rooterRouter);
app.use('/', rootRouter);

app.listen(port, () => {
console.log(`Http server listening on port ${port}`);
Expand Down

0 comments on commit 1ecb948

Please sign in to comment.