diff --git a/include/return_types.hpp b/include/answer.hpp
similarity index 92%
rename from include/return_types.hpp
rename to include/answer.hpp
index 65b8f6e..2eb05aa 100644
--- a/include/return_types.hpp
+++ b/include/answer.hpp
@@ -14,8 +14,8 @@
* along with this program. If not, see .
*/
-#ifndef MASTODONPP_RETURN_TYPES_HPP
-#define MASTODONPP_RETURN_TYPES_HPP
+#ifndef MASTODONPP_ANSWER_HPP
+#define MASTODONPP_ANSWER_HPP
#include
#include
@@ -34,7 +34,7 @@ using std::string_view;
*
* @since 0.1.0
*
- * @headerfile return_types.hpp mastodonpp/return_types.hpp
+ * @headerfile answer.hpp mastodonpp/answer.hpp
*
*/
struct answer_type
@@ -103,4 +103,4 @@ struct answer_type
} // namespace mastodonpp
-#endif // MASTODONPP_RETURN_TYPES_HPP
+#endif // MASTODONPP_ANSWER_HPP
diff --git a/include/connection.hpp b/include/connection.hpp
index a26120c..6e43bc6 100644
--- a/include/connection.hpp
+++ b/include/connection.hpp
@@ -17,10 +17,10 @@
#ifndef MASTODONPP_CONNECTION_HPP
#define MASTODONPP_CONNECTION_HPP
+#include "answer.hpp"
#include "api.hpp"
#include "curl_wrapper.hpp"
#include "instance.hpp"
-#include "return_types.hpp"
#include
#include
diff --git a/include/curl_wrapper.hpp b/include/curl_wrapper.hpp
index 90e010a..267de96 100644
--- a/include/curl_wrapper.hpp
+++ b/include/curl_wrapper.hpp
@@ -17,18 +17,24 @@
#ifndef MASTODONPP_CURL_WRAPPER_HPP
#define MASTODONPP_CURL_WRAPPER_HPP
-#include "return_types.hpp"
+#include "answer.hpp"
#include "curl/curl.h"
+#include