Skip to content

Commit 61a7867

Browse files
committed
refactor: set the version explicitly
1 parent 251651c commit 61a7867

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sip-dial-plan.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// sip-dial-plan.ts
33
// ----------------------------------------------------------------------------
44
import { HOSTNAME, PORT, TOKEN_ALGORITHM, TOKEN_SECRET } from "./config.ts";
5-
import { serve } from "https://deno.land/std/http/server.ts";
6-
import { Status } from "https://deno.land/std/http/http_status.ts";
7-
import { verify } from "https://deno.land/x/djwt/mod.ts";
5+
import { serve } from "https://deno.land/std@0.210.0/http/server.ts";
6+
import { Status } from "https://deno.land/std@0.210.0/http/http_status.ts";
7+
import { verify } from "https://deno.land/x/djwt@v3.0.1/mod.ts";
88
import { type Payload } from "https://deno.land/x/djwt/mod.ts";
99

1010
const DIAL_PLAN = "./dial-plan.json";

0 commit comments

Comments
 (0)