mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
13 lines
538 B
C#
13 lines
538 B
C#
using System;
|
|
using Spectre.Console;
|
|
|
|
namespace Aaru.Core;
|
|
|
|
/// <summary>Implement core operations using the Spectre console</summary>
|
|
public static class Spectre
|
|
{
|
|
/// <summary>Initializes a progress bar with a single spinner</summary>
|
|
/// <param name="action">Action to execute in the progress bar</param>
|
|
public static void ProgressSingleSpinner(Action<ProgressContext> action) => AnsiConsole.Progress().AutoClear(true).
|
|
HideCompleted(true).Columns(new TaskDescriptionColumn(), new SpinnerColumn()).Start(action);
|
|
} |