Renamed IScriptable to IScriptContainer, added Stop() function to Calls

This commit is contained in:
2025-08-31 03:02:43 +02:00
parent 92bf48d06a
commit 0647f10ca1
7 changed files with 29 additions and 8 deletions

View File

@@ -3,7 +3,7 @@ using Indexer.Models;
namespace Indexer.ScriptContainers;
public class PythonScriptable : IScriptable
public class PythonScriptable : IScriptContainer
{
public ScriptToolSet ToolSet { get; set; }
public PyObject? pyToolSet;