disabled debug

This commit is contained in:
PoliEcho 2024-11-10 15:43:20 +01:00
parent b588705df7
commit 7323b3efec

View File

@ -69,10 +69,10 @@ int main(int argc, char **argv) {
std::cin >> username;
std::string password;
// password = getpass("enter password: ");
// DEBUG
std::cout << "\nenter password: ";
std::cin >> password;
password = getpass("enter password: ");
// DEBUG
// std::cout << "\nenter password: ";
// std::cin >> password;
bakaapi::login(username, password);
}