Skip to content

Commit

Permalink
openpgp, websockets include fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Snider committed Mar 18, 2024
1 parent 5c69ae1 commit 3542e78
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@
"ini/": "https://deno.land/x/[email protected]/",
"jwt/": "https://deno.land/x/[email protected]/",
"mustache/": "https://deno.land/x/[email protected]/",
"websocket/": "https://deno.land/x/[email protected]/",
"openpgp/": "https://deno.land/x/[email protected]/",
"https://deno.land/x/websocket/": "https://deno.land/x/[email protected]/",
"s3Client": "https://deno.land/x/[email protected]/mod.ts",
"https://deno.land/x/sqlite/": "https://deno.land/x/[email protected]/",
"webdav": "npm:webdav",
Expand Down
4 changes: 2 additions & 2 deletions src/mod/cryptography/openpgp/openpgp.service.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as openpgp from "lib/openpgp.mjs";
import * as path from "std/path/mod.ts";
import * as openpgp from "../../../../lib/openpgp.mjs";
import * as path from "https://deno.land/std/path/mod.ts";
import { Injectable } from "https://deno.land/x/danet/mod.ts";
import {ModIoFsLocalService} from "../../io/fs/local/service.ts";
import {QuasiSaltService} from "../hash/quasi-salt.service.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/mod/io/protocols/websocket/websocket.server.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ZeroMQServerService } from "./zeromq/server.service.ts";
import { WebSocketClient, WebSocketServer } from "websocket/mod.ts";
import { WebSocketClient, WebSocketServer } from "https://deno.land/x/websocket/mod.ts";
import * as zmq from "https://deno.land/x/jszmq/mod.ts";
import {Logger} from "https://deno.land/x/danet/src/logger.ts";
export interface WebSocketMessageRequest {
Expand Down

0 comments on commit 3542e78

Please sign in to comment.