1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2025-05-08 21:34:03 +02:00
Minecraft-Phantom-Panel/Agent/Phantom.Agent.Services/Instances/States/IInstanceState.cs

7 lines
182 B
C#

namespace Phantom.Agent.Services.Instances.States;
interface IInstanceState {
void Initialize();
Task<bool> SendCommand(string command, CancellationToken cancellationToken);
}