Create decent server skeleton

This commit is contained in:
2025-10-22 15:20:13 -04:00
parent 390f637c48
commit 520c0a8280
4 changed files with 53 additions and 10 deletions

View File

@@ -0,0 +1,4 @@
int admin(int argc, char** argv)
{
}

View File

@@ -1,6 +1,8 @@
#include <iostream>
#include "app/app.hpp"
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}