mijin2/source/mijin/net/request.hpp

16 lines
348 B
C++

#pragma once
#if !defined(MIJIN_NET_REQUST_HPP_INCLUDED)
#define MIJIN_NET_REQUST_HPP_INCLUDED 1
#include "./http.hpp"
#include "../internal/common.hpp"
namespace mijin
{
Task<StreamResult<HTTPResponse>> c_request(const URL& url, HTTPRequest request = {}) MIJIN_NOEXCEPT;
} // namespace mijin
#endif // !defined(MIJIN_NET_REQUST_HPP_INCLUDED)