mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 11:14:25 +00:00
16 lines
561 B
C#
16 lines
561 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);
|
|
} |