13 lines
412 B
C#
13 lines
412 B
C#
namespace ClaudeDo.Worker.Planning;
|
|
|
|
public interface IPlanningTerminalLauncher
|
|
{
|
|
Task LaunchStartAsync(PlanningSessionStartContext ctx, CancellationToken cancellationToken);
|
|
Task LaunchResumeAsync(PlanningSessionResumeContext ctx, CancellationToken cancellationToken);
|
|
}
|
|
|
|
public sealed class PlanningLaunchException : Exception
|
|
{
|
|
public PlanningLaunchException(string message) : base(message) { }
|
|
}
|