tgstation-server  4.4.0
The /tg/station 13 server suite
IRestartHandler.cs
Go to the documentation of this file.
1 using System;
2 using System.Threading;
3 using System.Threading.Tasks;
4 
5 namespace Tgstation.Server.Host.Core
6 {
10  public interface IRestartHandler
11  {
18  Task HandleRestart(Version updateVersion, CancellationToken cancellationToken);
19  }
20 }