summaryrefslogtreecommitdiff
path: root/ext/websocket/autobahn/autobahn_server.js
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-07-25 10:26:54 +1000
committerGitHub <noreply@github.com>2024-07-25 10:26:54 +1000
commitf248050cb467eaed8d65428b8808254e26797cc5 (patch)
tree7e43f16a8754a6313f65f0f65c037fdae2ce986f /ext/websocket/autobahn/autobahn_server.js
parent795ed23b356dc044cfb497a6189d588604a6c335 (diff)
chore: use `@std` prefix for internal module specifiers (#24543)
This change aims to replace all relative import specifiers targeted at `tests/util/std` with mapped ones (using a `deno.json` file). Towards updating the `std` git submodule.
Diffstat (limited to 'ext/websocket/autobahn/autobahn_server.js')
-rw-r--r--ext/websocket/autobahn/autobahn_server.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/websocket/autobahn/autobahn_server.js b/ext/websocket/autobahn/autobahn_server.js
index 18b58ab1e..73e32a60f 100644
--- a/ext/websocket/autobahn/autobahn_server.js
+++ b/ext/websocket/autobahn/autobahn_server.js
@@ -1,5 +1,5 @@
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-import { parse } from "../../../tests/util/std/flags/mod.ts";
+import { parse } from "@std/flags/mod.ts";
const { port } = parse(Deno.args, {
number: ["port"],