BeezleBot/BeezleBot/settings.h
2018-03-30 19:44:53 +02:00

13 lines
162 B
C++

#pragma once
#include <string>
#include <vector>
struct Settings
{
std::string token;
std::vector<std::string> users;
Settings(int argc, char **argv);
};