@ -1,6 +1,5 @@
#include "util.h"
array<vector<string>, 5> read_csv(const string& filename) {
array<vector<string>, 5> array_vectors;
vector<string> vec_option;
@ -11,6 +11,11 @@
using namespace std;
template<typename Type>
struct Result{
Type response;
int error;
};
struct Passwd {
string user;