tictactoebot/include/config.h
2022-02-27 16:31:30 +01:00

8 lines
90 B
C++

#pragma once
#include <string>
struct Conf {
std::string token;
std::string apiurl;
};