diff options
| author | Matias Goldfeld <[email protected]> | 2021-01-27 02:30:17 -0500 |
|---|---|---|
| committer | Matias Goldfeld <[email protected]> | 2021-01-27 02:30:17 -0500 |
| commit | 8563506d415d8d26f6d98442e08c55dc0e89e7ec (patch) | |
| tree | 1b5d11f28fea0415eb45f0ebc1186368691f6dad /lib/models/id/channel_id.mli | |
| parent | Updated CI image from outdated ocaml/opam2 to ocaml/opam (diff) | |
| download | disml-8563506d415d8d26f6d98442e08c55dc0e89e7ec.tar.xz disml-8563506d415d8d26f6d98442e08c55dc0e89e7ec.zip | |
Fixed sending file attachments by adding multiform support
Diffstat (limited to 'lib/models/id/channel_id.mli')
| -rw-r--r-- | lib/models/id/channel_id.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/models/id/channel_id.mli b/lib/models/id/channel_id.mli index 74010a5..a05d282 100644 --- a/lib/models/id/channel_id.mli +++ b/lib/models/id/channel_id.mli @@ -24,7 +24,7 @@ Client.message_create := check_command val send_message :
?embed:Embed.t ->
?content:string ->
- ?file:string ->
+ ?files:(string * string) list ->
?tts:bool ->
t ->
Message_t.t Deferred.Or_error.t
|