diff options
| author | Adelyn Breedlove <[email protected]> | 2019-01-20 23:55:56 -0700 |
|---|---|---|
| committer | Adelyn Breedlove <[email protected]> | 2019-01-20 23:55:56 -0700 |
| commit | 916a7fe93cb43a127ae08d545f5fddf2a4ea74be (patch) | |
| tree | 4784cce76f45b4083364fb7a4f9968e879887780 /lib/models/attachment.mli | |
| parent | Improve embed builders (diff) | |
| download | disml-916a7fe93cb43a127ae08d545f5fddf2a4ea74be.tar.xz disml-916a7fe93cb43a127ae08d545f5fddf2a4ea74be.zip | |
Add more interfaces
Diffstat (limited to 'lib/models/attachment.mli')
| -rw-r--r-- | lib/models/attachment.mli | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/models/attachment.mli b/lib/models/attachment.mli new file mode 100644 index 0000000..2780011 --- /dev/null +++ b/lib/models/attachment.mli @@ -0,0 +1,9 @@ +type t = { + id: Snowflake.t; + filename: string; + size: int; + url: string; + proxy_url: string; + height: int; + width: int; +} [@@deriving sexp, yojson]
\ No newline at end of file |