mpp-server-dev2/src/index.ts

7 lines
101 B
TypeScript
Raw Normal View History

2023-09-07 01:59:44 +02:00
import { app } from "http/fastify";
import env from "util/env";
app.listen({
port: env.PORT
});