Implement new suspend/resume functionality for DeadSessionController

This commit is contained in:
Jordan Brown
2020-01-19 02:44:11 -05:00
parent 4ba539a4b1
commit d883641d68
@@ -100,5 +100,11 @@ namespace Tgstation.Server.Host.Components.Watchdog
/// <inheritdoc />
public void ReplaceDmbProvider(IDmbProvider newProvider) => throw new NotSupportedException();
/// <inheritdoc />
public void Suspend() => throw new NotSupportedException();
/// <inheritdoc />
public void Resume() => throw new NotSupportedException();
}
}