mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-10 13:11:06 +00:00
19 lines
468 B
C#
19 lines
468 B
C#
using ServerManagerTool.DiscordBot.Interfaces;
|
|
|
|
namespace ServerManagerTool.DiscordBot
|
|
{
|
|
public static class ServerManagerBotFactory
|
|
{
|
|
private static IServerManagerBot _serverManagerBot;
|
|
|
|
public static IServerManagerBot GetServerManagerBot()
|
|
{
|
|
if (_serverManagerBot is null)
|
|
{
|
|
_serverManagerBot = new ServerManagerBot();
|
|
}
|
|
|
|
return _serverManagerBot;
|
|
}
|
|
}
|
|
}
|