diff options
Diffstat (limited to 'lib/http.ml')
| -rw-r--r-- | lib/http.ml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/http.ml b/lib/http.ml index 1ff8e9d..9799d7a 100644 --- a/lib/http.ml +++ b/lib/http.ml @@ -351,4 +351,7 @@ let execute_git_webhook webhook_id token body = Base.request ~body `POST (Endpoints.webhook_git webhook_id token) let get_audit_logs guild_id body = - Base.request ~body `GET (Endpoints.guild_audit_logs guild_id)
\ No newline at end of file + Base.request ~body `GET (Endpoints.guild_audit_logs guild_id) + +let get_application_info () = + Base.request `GET (Endpoints.application_information)
\ No newline at end of file |