mirror of
https://github.com/Retropex/btcpayserver-docker.git
synced 2025-05-13 05:20:40 +02:00
18 lines
355 B
C#
18 lines
355 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace DockerGenerator
|
|
{
|
|
public static class ConsoleUtils
|
|
{
|
|
public static void WriteLine(string message, ConsoleColor color)
|
|
{
|
|
var old = Console.ForegroundColor;
|
|
Console.ForegroundColor = color;
|
|
Console.WriteLine(message);
|
|
Console.ForegroundColor = old;
|
|
}
|
|
}
|
|
}
|