13 lines
256 B
C++
13 lines
256 B
C++
#ifndef TOOLCHAIN_DOWNLOAD_HPP
|
|
#define TOOLCHAIN_DOWNLOAD_HPP
|
|
|
|
#include "Common.hpp"
|
|
|
|
namespace Toolchain
|
|
{
|
|
bool DownloadFile(const fs::path &path, std::string_view url);
|
|
|
|
// TODO(3011): Archive verification ...
|
|
}
|
|
|
|
#endif // TOOLCHAIN_DOWNLOAD_HPP
|