remove DEBUG
Some checks are pending
/ sync-to-origin (push) Waiting to run

This commit is contained in:
PoliEcho 2025-03-04 10:26:46 +01:00
parent 05d3819d56
commit d81876f527

View File

@ -91,10 +91,10 @@ void get_input_and_login() {
std::cin >> username;
std::string password;
// password = getpass("enter password: ");
password = getpass("enter password: ");
// DEBUG
std::cout << "\nenter password: ";
std::cin >> password;
// std::cout << "\nenter password: ";
// std::cin >> password;
bakaapi::login(username, password);
}