diff options
author | tastytea | 2020-01-04 19:05:18 +0100 |
---|---|---|
committer | tastytea | 2020-01-04 19:05:18 +0100 |
commit | cac3e0b505916dc17953a20dfd309210ea09bfde (patch) | |
tree | 87b2eaaa9f96ebe49b2f8c1c2cf371c0e01b6a70 /include/request.hpp | |
parent | 0b525bb7483a54b054040b21dd5fe352c35ece7c (diff) | |
download | mastodonpp-cac3e0b505916dc17953a20dfd309210ea09bfde.tar mastodonpp-cac3e0b505916dc17953a20dfd309210ea09bfde.tar.gz mastodonpp-cac3e0b505916dc17953a20dfd309210ea09bfde.zip |
Simple GET request works.
Diffstat (limited to 'include/request.hpp')
-rw-r--r-- | include/request.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/request.hpp b/include/request.hpp index e35b85c..36d4f41 100644 --- a/include/request.hpp +++ b/include/request.hpp @@ -57,7 +57,7 @@ public: * @since 0.1.0 */ [[nodiscard]] - answer_type get(API::endpoint_type endpoint) const; + answer_type get(API::endpoint_type endpoint); /*! * @brief Make a HTTP GET call. @@ -67,7 +67,7 @@ public: * @since 0.1.0 */ [[nodiscard]] - answer_type get(string endpoint) const; + answer_type get(string endpoint); private: Instance &_instance; |