msh-console/main.cpp

18 lines
234 B
C++
Raw Normal View History

#include "console.h"
#include <cstdlib>
using namespace std;
int main(int argc, char **argv)
{
// Load config files, if any.
// Run command loop
Console::loop();
// Perform any shutdown/cleanup.
return EXIT_SUCCESS;
}