mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-05-08 21:34:03 +02:00
7 lines
182 B
C#
7 lines
182 B
C#
namespace Phantom.Agent.Services.Instances.States;
|
|
|
|
interface IInstanceState {
|
|
void Initialize();
|
|
Task<bool> SendCommand(string command, CancellationToken cancellationToken);
|
|
}
|