From cac3e0b505916dc17953a20dfd309210ea09bfde Mon Sep 17 00:00:00 2001 From: tastytea Date: Sat, 4 Jan 2020 19:05:18 +0100 Subject: Simple GET request works. --- include/request.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/request.hpp') 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; -- cgit v1.2.3-54-g00ecf