/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2026/01/13 17:54:18 by bchanot #+# #+# */ /* Updated: 2026/01/16 19:33:09 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "BitcoinExchange.hpp" int main(int ac, char **av) { std::map Data; if (ac != 2) { std::cout << "Error : no file specified." << std::endl; throw std::exception(); } ft_getcsv(Data); ft_process(av, Data); return 0; }