BotSharp/src/Infrastructure/BotSharp.Abstraction/Loggers/IVerboseLogHook.cs
2023-11-29 17:23:14 -06:00

7 lines
113 B
C#

namespace BotSharp.Abstraction.Loggers;
public interface IVerboseLogHook
{
void GenerateLog(string text);
}