tgstation-server  4.3.2
The /tg/station 13 server suite
IServerFactory.cs
Go to the documentation of this file.
1 using System.Threading;
2 using System.Threading.Tasks;
3 using Tgstation.Server.Host.IO;
4 
5 namespace Tgstation.Server.Host
6 {
10  interface IServerFactory
11  {
15  IIOManager IOManager { get; }
16 
24  Task<IServer> CreateServer(string[] args, string updatePath, CancellationToken cancellationToken);
25  }
26 }
Interface for using filesystems
Definition: IIOManager.cs:11