Reorder some imports

This commit is contained in:
2026-02-02 18:32:39 -05:00
parent 4d1c30b874
commit 1ed5aa4b33
2 changed files with 2 additions and 3 deletions

View File

@@ -10,8 +10,6 @@ import { runWithContext } from "./diachron/context";
import { core } from "./diachron/core"; import { core } from "./diachron/core";
import { httpCodes } from "./diachron/http-codes"; import { httpCodes } from "./diachron/http-codes";
import { request } from "./diachron/request"; import { request } from "./diachron/request";
import { routes } from "./routes";
// import { URLPattern } from 'node:url'; // import { URLPattern } from 'node:url';
import { import {
AuthenticationRequired, AuthenticationRequired,
@@ -26,6 +24,7 @@ import {
type Result, type Result,
type Route, type Route,
} from "./diachron/types"; } from "./diachron/types";
import { routes } from "./routes";
const app = express(); const app = express();

View File

@@ -1,7 +1,7 @@
import { Kysely, PostgresDialect } from "kysely"; import { Kysely, PostgresDialect } from "kysely";
import { Pool } from "pg"; import { Pool } from "pg";
import { connectionConfig } from "../database";
import type { DB } from "../../generated/db"; import type { DB } from "../../generated/db";
import { connectionConfig } from "../database";
const db = new Kysely<DB>({ const db = new Kysely<DB>({
dialect: new PostgresDialect({ dialect: new PostgresDialect({