Added CMakeLists.txt to File-Downloader

This commit is contained in:
2026-04-07 10:40:19 +02:00
commit 2c1fbaf4c6
10 changed files with 399 additions and 0 deletions

10
console.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include "common.h"
bool isValidURL(const std::string& url) ;
namespace console
{
std::string getValidURL();
void drawStylishProgressBar(double progress, int width);
}