aboutsummaryrefslogtreecommitdiff
path: root/lib/models/channel_t.ml
diff options
context:
space:
mode:
authorAdelyn Breelove <[email protected]>2018-12-14 10:52:36 -0700
committerAdelyn Breelove <[email protected]>2018-12-14 10:52:36 -0700
commitaf684566617ebce536e9f30693aa3e225af906c4 (patch)
tree0184187b0b90e402f74402ffd6975d54fd1b5bb9 /lib/models/channel_t.ml
parentFix more dispatch issues (diff)
downloaddisml-af684566617ebce536e9f30693aa3e225af906c4.tar.xz
disml-af684566617ebce536e9f30693aa3e225af906c4.zip
There's a lot going on
Diffstat (limited to 'lib/models/channel_t.ml')
-rw-r--r--lib/models/channel_t.ml23
1 files changed, 0 insertions, 23 deletions
diff --git a/lib/models/channel_t.ml b/lib/models/channel_t.ml
deleted file mode 100644
index a5c9ce4..0000000
--- a/lib/models/channel_t.ml
+++ /dev/null
@@ -1,23 +0,0 @@
-(* Auto-generated from "channel.atd" *)
- [@@@ocaml.warning "-27-32-35-39"]
-
-type user = User_t.t
-
-type snowflake = Snowflake_t.t
-
-type t = {
- id: snowflake;
- kind: int;
- guild_id: snowflake option;
- position: int option;
- name: string option;
- topic: string option;
- nsfw: bool option;
- bitrate: int option;
- user_limit: int option;
- recipients: user list option;
- icon: string option;
- owner_id: snowflake option;
- application_id: snowflake option;
- parent_id: snowflake option
-}