refactoring

This commit is contained in:
2024-11-29 12:25:45 +01:00
parent ed703f594e
commit b7202932c5
8 changed files with 134 additions and 10 deletions
+5 -2
View File
@@ -2,8 +2,8 @@
#include "color.h"
#include "helper_funcs.h"
#include "main_menu.h"
#include "marks/marks.h"
#include "net.h"
#include "helper_funcs.h"
#include <csignal>
#include <curl/curl.h>
#include <curses.h>
@@ -25,6 +25,9 @@ int main(int argc, char **argv) {
// error signal handlers
signal(SIGSEGV, safe_exit);
marks_page();
/*
{
std::string savedir_path = std::getenv("HOME");
savedir_path.append("/.local/share/bakatui");
@@ -61,6 +64,6 @@ int main(int argc, char **argv) {
get_input_and_login();
}
main_menu();
*/
return 0;
}