Files
git.stella-ops.org/src/Cli/StellaOps.Cli/Services/IScannerInstaller.cs
2025-10-28 15:10:40 +02:00

10 lines
235 B
C#

using System.Threading;
using System.Threading.Tasks;
namespace StellaOps.Cli.Services;
internal interface IScannerInstaller
{
Task InstallAsync(string artifactPath, bool verbose, CancellationToken cancellationToken);
}