feat: biome check
This commit is contained in:
@@ -6,8 +6,8 @@ import {
|
||||
InternalServerError,
|
||||
NotFoundError,
|
||||
NotImplementedError,
|
||||
Route,
|
||||
RouteMethod,
|
||||
type Route,
|
||||
type RouteMethod,
|
||||
ServerError,
|
||||
type ServerErrorResponse,
|
||||
UnauthorizedError,
|
||||
|
||||
@@ -13,4 +13,4 @@
|
||||
"@valkyr/json-rpc": "npm:@jsr/valkyr__json-rpc@1.1.0",
|
||||
"zod": "4.1.11"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
import "./types.ts";
|
||||
|
||||
import { context } from "@platform/relay";
|
||||
import { InternalServerError } from "@platform/relay";
|
||||
import { storage } from "@platform/storage";
|
||||
import { getStorageContext } from "@platform/storage";
|
||||
import { context, InternalServerError } from "@platform/relay";
|
||||
import { getStorageContext, storage } from "@platform/storage";
|
||||
|
||||
export default {
|
||||
/**
|
||||
|
||||
@@ -8,7 +8,7 @@ import type { Api } from "./api.ts";
|
||||
/**
|
||||
* TODO ...
|
||||
*/
|
||||
export function upgradeWebSocket(request: Request, api: Api) {
|
||||
export function upgradeWebSocket(request: Request, _api: Api) {
|
||||
const { socket, response } = Deno.upgradeWebSocket(request);
|
||||
|
||||
socket.addEventListener("open", () => {
|
||||
|
||||
Reference in New Issue
Block a user