diff options
author | tastytea | 2020-01-03 13:10:46 +0100 |
---|---|---|
committer | tastytea | 2020-01-03 13:10:46 +0100 |
commit | 174daaf92474e70424df73f5a91c002bec132f4f (patch) | |
tree | 3ec5dc80da072e1374a95af3a59e82f590d11ecc | |
parent | 9874e76de248835d0b3cc2d20ee2f151a4b553bb (diff) | |
download | mastodonpp-174daaf92474e70424df73f5a91c002bec132f4f.tar mastodonpp-174daaf92474e70424df73f5a91c002bec132f4f.tar.gz mastodonpp-174daaf92474e70424df73f5a91c002bec132f4f.zip |
Add request.hpp to mastodonpp.hpp and update example.
-rw-r--r-- | include/mastodonpp.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mastodonpp.hpp b/include/mastodonpp.hpp index e48c093..6ca882d 100644 --- a/include/mastodonpp.hpp +++ b/include/mastodonpp.hpp @@ -19,6 +19,7 @@ #include "api.hpp" #include "instance.hpp" +#include "request.hpp" #include "return_types.hpp" /*! @@ -45,6 +46,7 @@ * * @code * mastodonpp::Instance instance{"example.com", ""}; + * mastodonpp::Request request{instance}; * @endcode */ |