From dc22c069125c67d0d6ea17bda6d3c68e5ce31dd8 Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Sun, 28 Aug 2022 11:10:41 +0000 Subject: [PATCH] fix: missing util exports --- util/mod.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/util/mod.ts b/util/mod.ts index 13f0b85db..60731905f 100644 --- a/util/mod.ts +++ b/util/mod.ts @@ -1,7 +1,12 @@ export * from "./bigint.ts"; +export * from "./bucket.ts"; export * from "./calculateShardId.ts"; export * from "./collection.ts"; export * from "./constants.ts"; export * from "./hash.ts"; +export * from "./permissions.ts"; +export * from "./routes.ts"; +export * from "./token.ts"; +export * from "./urlToBase64.ts"; export * from "./utils.ts"; export * from "./validateLength.ts";