2021-09-08 19:55:03 +03:00

15 lines
207 B
C++

#ifndef SENTRY_H
#define SENTRY_H
#include <string>
// singleton, dont make this twice
class Sentry final {
public:
Sentry(const std::string& SentryUrl);
~Sentry();
private:
};
#endif // SENTRY_H