12 lines
175 B
C++
12 lines
175 B
C++
#include "Wallet.h"
|
|
#include <iostream>
|
|
#include "MerkelMain.h"
|
|
#include "TradingBot.h"
|
|
|
|
int main()
|
|
{
|
|
MerkelMain app{};
|
|
TradingBot bot{&app};
|
|
bot.startBot();
|
|
}
|