Skip to content

Commit

Permalink
refactor: set the version explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
emrahcom committed Jan 9, 2024
1 parent 251651c commit 61a7867
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sip-dial-plan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 61a7867

Please sign in to comment.