diff --git a/mod.ts b/mod.ts index c56b93ff0..152fd637a 100644 --- a/mod.ts +++ b/mod.ts @@ -10,8 +10,5 @@ export * from "./src/structures/message.ts"; export * from "./src/structures/mod.ts"; export * from "./src/structures/role.ts"; export * from "./src/types/mod.ts"; -export * from "./src/util/collection.ts"; -export * from "./src/util/constants.ts"; -export * from "./src/util/permissions.ts"; -export * from "./src/util/utils.ts"; +export * from "./src/util/mod.ts"; export * from "./src/ws/mod.ts"; diff --git a/src/util/mod.ts b/src/util/mod.ts new file mode 100644 index 000000000..fe2efd7b1 --- /dev/null +++ b/src/util/mod.ts @@ -0,0 +1,7 @@ +export * from "./bigint.ts"; +export * from "./collection.ts"; +export * from "./constants.ts"; +export * from "./loop_object.ts"; +export * from "./permissions.ts"; +export * from "./utils.ts"; +export * from "./validate_length.ts"; \ No newline at end of file