Skip to content

Commit d4e3fe9

Browse files
author
Sylvestre Gug
committed
modules for server
1 parent f7d88e5 commit d4e3fe9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/server.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import https from "https";
66
import {readFileSync} from "fs";
77
import {run} from "micro";
88
import {createHmac, timingSafeEqual} from "crypto";
9-
import serializeErrors from "./serialize-errors";
10-
import {notFound, unauthorized, exit} from "./errors";
11-
import mysql from "./mysql";
12-
import postgres from "./postgres";
13-
import snowflake from "./snowflake";
9+
import serializeErrors from "./serialize-errors.js";
10+
import {notFound, unauthorized, exit} from "./errors.js";
11+
import mysql from "./mysql.js";
12+
import postgres from "./postgres.js";
13+
import snowflake from "./snowflake.js";
1414

1515
export function server(config, argv) {
1616
const development = process.env.NODE_ENV === "development";

0 commit comments

Comments
 (0)