From 4a8110867733c4fed6ca2945ce62a8eee703c5e0 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 28 Nov 2020 14:33:19 +0100 Subject: [PATCH] Remove mysql include and test from main.cpp. --- main.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/main.cpp b/main.cpp index 9549a88..0df776f 100644 --- a/main.cpp +++ b/main.cpp @@ -7,8 +7,6 @@ #include "rdn_application.h" -#include "database/mysql/mysql_connection.h" - #define MAIN_CLASS RDNApplication int main(int argc, char **argv) { @@ -16,9 +14,6 @@ int main(int argc, char **argv) { file_cache->wwwroot = "./www"; file_cache->wwwroot_refresh_cache(); - //MysqlConnection *conn; - //conn = new MysqlConnection(); - Application *app = new MAIN_CLASS(); app->setup_routes(); @@ -33,7 +28,6 @@ int main(int argc, char **argv) { delete server; delete app; delete file_cache; - // delete conn; return 0; } \ No newline at end of file