From f2ee69c130bcf4c253eb197a177330c2a3dccd57 Mon Sep 17 00:00:00 2001 From: ayntee Date: Fri, 25 Dec 2020 20:47:23 +0400 Subject: [PATCH] refactor: move snowflake.ts to utils --- mod.ts | 2 +- src/{structures => utils}/snowflake.ts | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{structures => utils}/snowflake.ts (100%) diff --git a/mod.ts b/mod.ts index 2c2e779..e0a3870 100644 --- a/mod.ts +++ b/mod.ts @@ -66,7 +66,7 @@ export { ActivityTypes } from './src/structures/presence.ts' export { Role } from './src/structures/role.ts' -export { Snowflake } from './src/structures/snowflake.ts' +export { Snowflake } from './src/utils/snowflake.ts' export { TextChannel, GuildTextChannel } from './src/structures/textChannel.ts' export { MessageReaction } from './src/structures/messageReaction.ts' export { User } from './src/structures/user.ts' diff --git a/src/structures/snowflake.ts b/src/utils/snowflake.ts similarity index 100% rename from src/structures/snowflake.ts rename to src/utils/snowflake.ts