aboutsummaryrefslogtreecommitdiff
path: root/lib/s.ml
diff options
context:
space:
mode:
authorAdelyn Breelove <[email protected]>2019-02-04 13:21:52 -0700
committerAdelyn Breelove <[email protected]>2019-02-04 13:21:52 -0700
commit62b7689d0af62daee569e7d8ab3c641af756e6ef (patch)
treefb0777298a29ffb1f92c79350681f1fe55248ae5 /lib/s.ml
parentOpt to never force close unix fd before writer is flushed (diff)
downloaddisml-62b7689d0af62daee569e7d8ab3c641af756e6ef.tar.xz
disml-62b7689d0af62daee569e7d8ab3c641af756e6ef.zip
Update yojson to 1.6.0
Diffstat (limited to 'lib/s.ml')
-rw-r--r--lib/s.ml8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/s.ml b/lib/s.ml
index 2bd2703..8deb334 100644
--- a/lib/s.ml
+++ b/lib/s.ml
@@ -71,12 +71,12 @@ module type GuildImpl = sig
val get_ban : id:Snowflake.t -> t -> Ban_t.t Deferred.Or_error.t
val get_bans : t -> Ban_t.t list Deferred.Or_error.t
val get_emoji : id:Snowflake.t -> t -> Emoji.t Deferred.Or_error.t
- val get_invites : t -> Yojson.Safe.json Deferred.Or_error.t
+ val get_invites : t -> Yojson.Safe.t Deferred.Or_error.t
val get_prune_count : days:int -> t -> int Deferred.Or_error.t
- val get_webhooks : t -> Yojson.Safe.json Deferred.Or_error.t
+ val get_webhooks : t -> Yojson.Safe.t Deferred.Or_error.t
val kick_user : id:Snowflake.t -> ?reason:string -> t -> unit Deferred.Or_error.t
val leave : t -> unit Deferred.Or_error.t
- val list_voice_regions : t -> Yojson.Safe.json Deferred.Or_error.t
+ val list_voice_regions : t -> Yojson.Safe.t Deferred.Or_error.t
val prune : days:int -> t -> int Deferred.Or_error.t
val request_members : t -> Member_t.t list Deferred.Or_error.t
val set_afk_channel : id:Snowflake.t -> t -> Guild_t.t Deferred.Or_error.t
@@ -89,5 +89,5 @@ end
module type UserImpl = sig
type t
(* val private_channel : t -> Channel_t.t *)
- (* val send : t -> Yojson.Safe.json Deferred.Or_error.t *)
+ (* val send : t -> Yojson.Safe.t Deferred.Or_error.t *)
end \ No newline at end of file