From 61a786763beabf1ee1efd44558b2786c1644da56 Mon Sep 17 00:00:00 2001 From: emrah Date: Tue, 9 Jan 2024 12:43:48 +0300 Subject: [PATCH] refactor: set the version explicitly --- sip-dial-plan.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sip-dial-plan.ts b/sip-dial-plan.ts index 0f4cc0a..f1ade8a 100644 --- a/sip-dial-plan.ts +++ b/sip-dial-plan.ts @@ -2,9 +2,9 @@ // sip-dial-plan.ts // ---------------------------------------------------------------------------- import { HOSTNAME, PORT, TOKEN_ALGORITHM, TOKEN_SECRET } from "./config.ts"; -import { serve } from "https://deno.land/std/http/server.ts"; -import { Status } from "https://deno.land/std/http/http_status.ts"; -import { verify } from "https://deno.land/x/djwt/mod.ts"; +import { serve } from "https://deno.land/std@0.210.0/http/server.ts"; +import { Status } from "https://deno.land/std@0.210.0/http/http_status.ts"; +import { verify } from "https://deno.land/x/djwt@v3.0.1/mod.ts"; import { type Payload } from "https://deno.land/x/djwt/mod.ts"; const DIAL_PLAN = "./dial-plan.json";