diff options
| author | Adelyn Breelove <[email protected]> | 2019-01-23 10:40:04 -0700 |
|---|---|---|
| committer | Adelyn Breelove <[email protected]> | 2019-01-23 10:40:04 -0700 |
| commit | f23a12be25f819b9cc9ae05829b14edb6807082f (patch) | |
| tree | e90bf9fa5a469c9707feccce9bf3926858c67f35 /lib/models/channel/channel.mli | |
| parent | fix a doc typo (diff) | |
| download | disml-f23a12be25f819b9cc9ae05829b14edb6807082f.tar.xz disml-f23a12be25f819b9cc9ae05829b14edb6807082f.zip | |
Guild ID and Channel ID abstractions
Diffstat (limited to 'lib/models/channel/channel.mli')
| -rw-r--r-- | lib/models/channel/channel.mli | 45 |
1 files changed, 2 insertions, 43 deletions
diff --git a/lib/models/channel/channel.mli b/lib/models/channel/channel.mli index 001bb05..feb7323 100644 --- a/lib/models/channel/channel.mli +++ b/lib/models/channel/channel.mli @@ -1,44 +1,3 @@ -open Async include module type of Channel_t - -exception Invalid_message -exception No_message_found - -(** Simple version of send_message that only takes [~content] *) -val say : content:string -> t -> Message_t.t Deferred.Or_error.t - -(** Advanced message sending. - - Raises {!Channel.Invalid_message} if one of content or embed is not set. - - {3 Examples} - {[ - open Core - open Disml - - let check_command (msg : Message.t) = - if String.is_prefix ~prefix:"!hello" msg.content then - let embed = { Embed.default with title = Some "Hello World!" } in - Channel.send_message ~embed msg.channel >>> ignore - - Client.message_create := check_command - ]} -*) -val send_message : - ?embed:Embed.t -> - ?content:string -> - ?file:string -> - ?tts:bool -> - t -> - Message_t.t Deferred.Or_error.t -val delete : t -> unit Deferred.Or_error.t -val get_message : id:Snowflake.t -> t -> Message_t.t Deferred.Or_error.t -val get_messages : - ?mode:[ `Before | `After | `Around ] -> - ?id:Snowflake.t -> - ?limit:int -> - t -> - Message_t.t list Deferred.Or_error.t -val broadcast_typing : t -> unit Deferred.Or_error.t -val get_pins : t -> Message_t.t list Deferred.Or_error.t -(* TODO more things related to guild channels *)
\ No newline at end of file +include S.ChannelImpl with + type t := Channel_t.t
\ No newline at end of file |