cellar/src/cellar.cpp

23 lines
494 B
C++
Raw Normal View History

2017-03-12 17:13:07 -07:00
#include <iostream>
#include <map>
2017-03-12 17:13:07 -07:00
#include <string>
2017-03-12 22:33:42 -07:00
#include <vector>
2017-03-12 17:13:07 -07:00
#include "json.hpp"
2017-03-12 17:13:07 -07:00
2017-03-13 19:03:07 -07:00
#include "bottles.hpp"
#include "commands.hpp"
2017-03-12 17:13:07 -07:00
2017-03-12 22:33:42 -07:00
using namespace std;
using namespace cellar;
using json = nlohmann::json;
2017-03-12 17:13:07 -07:00
2017-03-12 22:33:42 -07:00
int main(int argc, char* argv[]) {
vector<string> commands = commands::list_commands();
cout << "cellar - bottle management tool for WINE connoisseurs" << std::endl;
for (string item : commands) {
cout << item << " has loaded" << endl;
}
return 0;
2017-03-12 15:43:11 -07:00
}