mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-05-07 18:34:03 +02:00
10 lines
265 B
C#
10 lines
265 B
C#
namespace Phantom.Agent.Services.Instances.States;
|
|
|
|
sealed class InstanceNotRunningState : IInstanceState {
|
|
public void Initialize() {}
|
|
|
|
public Task<bool> SendCommand(string command, CancellationToken cancellationToken) {
|
|
return Task.FromResult(false);
|
|
}
|
|
}
|