diff options
Diffstat (limited to 'include')
-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; |