Skip to content
Snippets Groups Projects
Commit ea0f65f7 authored by Konstantinos Sideris's avatar Konstantinos Sideris
Browse files

Remove test account credentials

parent 7e522df7
No related branches found
No related tags found
No related merge requests found
......@@ -597,17 +597,17 @@ main()
{
spdlog::set_pattern("[%H:%M:%S] [tid %t] [%^%l%$] %v");
std::string username("mtx_bot");
std::string server("matrix.org");
std::string password("dzyvrwB09GdyEqiyBnfAEvZI3");
std::string username;
std::string server;
std::string password;
// cout << "username: ";
// std::getline(std::cin, username);
cout << "username: ";
std::getline(std::cin, username);
// cout << "server: ";
// std::getline(std::cin, server);
cout << "server: ";
std::getline(std::cin, server);
// password = getpass("password: ");
password = getpass("password: ");
client = std::make_shared<Client>(server);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment