Skip to content

Commit

Permalink
fix: Reorder imports
Browse files Browse the repository at this point in the history
  • Loading branch information
pettermachado committed Oct 25, 2024
1 parent 5408808 commit 478684c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import "./lib/env.js";
import { getLogger } from "./lib/logger/index.js";
import { createRequestHandler } from "@remix-run/express";
import type { ServerBuild } from "@remix-run/node";
import express from "express";
Expand All @@ -8,6 +7,7 @@ import pinoHttp from "pino-http";
import { sync } from "./lib/db/index.js";
import worker from "./lib/worker/index.js";
import apiRouter from "./api/index.js";
import { getLogger } from "./lib/logger/index.js";

const logger = getLogger("server");

Expand Down

0 comments on commit 478684c

Please sign in to comment.