diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-08-06 21:07:39 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-08-06 21:07:39 -0400 |
commit | 0aaa6166af6ff17f9b643997fccb44de1b57b1e5 (patch) | |
tree | 5635294e59183d93359393c94d826f99cc9b1063 /src/lib/models/shared/MemberCount.ts | |
parent | c3e19b629b1d49b904782b3c21decb804ae7f1d1 (diff) | |
download | tanzanite-0aaa6166af6ff17f9b643997fccb44de1b57b1e5.tar.gz tanzanite-0aaa6166af6ff17f9b643997fccb44de1b57b1e5.tar.bz2 tanzanite-0aaa6166af6ff17f9b643997fccb44de1b57b1e5.zip |
track the number of guilds the bot is in so I can make a graph
Diffstat (limited to 'src/lib/models/shared/MemberCount.ts')
-rw-r--r-- | src/lib/models/shared/MemberCount.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/models/shared/MemberCount.ts b/src/lib/models/shared/MemberCount.ts index 409d1ac..ea8795c 100644 --- a/src/lib/models/shared/MemberCount.ts +++ b/src/lib/models/shared/MemberCount.ts @@ -14,7 +14,7 @@ export interface MemberCountCreationAttributes { } /** - * Data specific to a certain instance of the bot. + * The member count of each guild that the bot is in that have over 100 members. */ export class MemberCount extends Model<MemberCountModel, MemberCountCreationAttributes> implements MemberCountModel { public declare timestamp: Date; |