Make biome happier

This commit is contained in:
2026-01-01 17:22:04 -06:00
parent 20e5da0d54
commit e2ea472a10
5 changed files with 20 additions and 23 deletions

View File

@@ -1,6 +1,6 @@
import express, {
Request as ExpressRequest,
Response as ExpressResponse,
type Request as ExpressRequest,
type Response as ExpressResponse,
} from "express";
import { match } from "path-to-regexp";
import { cli } from "./cli";
@@ -10,19 +10,16 @@ import { routes } from "./routes";
import { services } from "./services";
// import { URLPattern } from 'node:url';
import {
Call,
InternalHandler,
Method,
ProcessedRoute,
Result,
Route,
type Call,
type InternalHandler,
type Method,
massageMethod,
methodParser,
type ProcessedRoute,
type Result,
type Route,
} from "./types";
const app = express();
services.logging.log({ source: "logging", text: ["1"] });