15 lines
219 B
C++
15 lines
219 B
C++
#include <iostream>
|
|
#include "BitcoinExchange.hpp"
|
|
|
|
int main(int ac, char** av)
|
|
{
|
|
if (ac != 2)
|
|
{
|
|
std::cout << "error: could not open file." << std::endl;
|
|
return 1;
|
|
}
|
|
get_price(std::string(av[1]));
|
|
return 0;
|
|
}
|
|
|