mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-05-05 21:34:05 +02:00
8 lines
231 B
C#
8 lines
231 B
C#
using Phantom.Agent.Services.Instances.States;
|
|
|
|
namespace Phantom.Agent.Services.Instances.Procedures;
|
|
|
|
interface IInstanceProcedure {
|
|
Task<IInstanceState?> Run(IInstanceContext context, CancellationToken cancellationToken);
|
|
}
|