7 lines
113 B
C#
7 lines
113 B
C#
namespace BotSharp.Abstraction.Loggers;
|
|
|
|
public interface IVerboseLogHook
|
|
{
|
|
void GenerateLog(string text);
|
|
}
|