fix(cbor): fix module specifier in import (#6099)

This commit is contained in:
Yoshiya Hinosawa 2024-10-10 11:10:55 +01:00 committed by GitHub
parent b4e5d21762
commit b9e8edf901
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,6 @@
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { concat } from "../bytes/concat.ts";
import { concat } from "@std/bytes/concat";
import { encodeCbor } from "./encode_cbor.ts";
import type { CborType } from "./types.ts";