diff options
| author | Adelyn Breelove <[email protected]> | 2018-12-13 14:11:54 -0700 |
|---|---|---|
| committer | Adelyn Breelove <[email protected]> | 2018-12-13 14:11:54 -0700 |
| commit | 73d115ce6260e97f5f7ee47f743d842ffd292662 (patch) | |
| tree | 7825358ae1b4736392909cb72ce26cdb26257d23 /lib/models/guild.ml | |
| parent | Add rate limit handling (diff) | |
| download | disml-73d115ce6260e97f5f7ee47f743d842ffd292662.tar.xz disml-73d115ce6260e97f5f7ee47f743d842ffd292662.zip | |
Working on deriving types from json
Diffstat (limited to 'lib/models/guild.ml')
| -rw-r--r-- | lib/models/guild.ml | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/models/guild.ml b/lib/models/guild.ml deleted file mode 100644 index 5f5855b..0000000 --- a/lib/models/guild.ml +++ /dev/null @@ -1,28 +0,0 @@ -type t = { - id: Snowflake.t; - name: string; - icon: string; - splash: string; - owner: User.t; - region: string; - afk_channel: Channel.t option; - afk_timeout: int; - embed_enabled: bool; - embed_channel: Channel.t; - verification_level: int; - default_message_notifications: int; - explicit_content_filter: int; - roles: Role.t list; - emojis: Emoji.t list; - features: string list; - mfa_level: int; - application_id: Snowflake.t option; - widget_enabled: bool option; - widget_channel: Channel.t option; - system_channel: Channel.t option; - large: bool; - unavailable: bool; - member_count: int; - members: Member.t list; - channels: Channel.t list; -} [@@deriving yojson]
\ No newline at end of file |