diff options
author | Thesourtimes <cckhmck@gmail.com> | 2022-01-01 20:04:30 +0300 |
---|---|---|
committer | Thesourtimes <cckhmck@gmail.com> | 2022-01-01 20:04:30 +0300 |
commit | 2b6e6ea0256325dc6a1097b9f0cfb2928feb12aa (patch) | |
tree | 7305f9762093fbdd5835e60d6080233413df64d0 /api/src/util/index.ts | |
parent | Fix game statusses (diff) | |
download | server-2b6e6ea0256325dc6a1097b9f0cfb2928feb12aa.tar.xz |
Organize @fosscord/api utils in directories
Diffstat (limited to 'api/src/util/index.ts')
-rw-r--r-- | api/src/util/index.ts | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/api/src/util/index.ts b/api/src/util/index.ts index 238787c9..ffbcf24e 100644 --- a/api/src/util/index.ts +++ b/api/src/util/index.ts @@ -1,8 +1,8 @@ -export * from "./Base64"; -export * from "./ipAddress"; -export * from "./Message"; -export * from "./passwordStrength"; -export * from "./RandomInviteID"; -export * from "./route"; -export * from "./String"; -export * from "./Voice"; +export * from "./utility/Base64"; +export * from "./utility/ipAddress"; +export * from "./handlers/Message"; +export * from "./utility/passwordStrength"; +export * from "./utility/RandomInviteID"; +export * from "./handlers/route"; +export * from "./utility/String"; +export * from "./handlers/Voice"; |