mirror of
https://github.com/unclshura/splitter.git
synced 2026-08-06 03:33:39 +00:00
8 lines
131 B
C#
8 lines
131 B
C#
|
|
namespace Splitter_UI.Services;
|
|
|
|
public interface ILogService
|
|
{
|
|
void Log(string prefix, ConsoleColor color, string msg);
|
|
}
|