mirror of
https://github.com/aljazceru/btcpayserver-docker.git
synced 2025-12-18 14:14:21 +01: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;
|
|
}
|
|
}
|
|
}
|