mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
11 lines
172 B
C
11 lines
172 B
C
|
#ifndef __SERVER__H__
|
||
|
#define __SERVER__H__
|
||
|
|
||
|
#include <string_view>
|
||
|
|
||
|
namespace Server {
|
||
|
void SetupLogger(const std::string_view serviceName);
|
||
|
};
|
||
|
|
||
|
#endif //!__SERVER__H__
|