using Elsa.Expressions.Helpers;
using Elsa.Expressions.Models;
using Elsa.Mediator.Contracts;
using Elsa.Python.Contracts;
using Elsa.Python.Models;
using Elsa.Python.Notifications;
namespace Elsa.Python.Services;
///
/// Evaluates Python expressions using IronPython.
///
public class IronPythonEvaluator : IPythonEvaluator
{
private readonly INotificationSender _notificationSender;
///
/// Initializes a new instance of the class.
///
public IronPythonEvaluator(INotificationSender notificationSender)
{
_notificationSender = notificationSender;
}
///
public async Task