server-master/srcs/DiscordNotifier/Discord/IDiscordWebhookLogsService.cs
2026-02-10 18:21:30 +01:00

13 lines
No EOL
390 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using Discord;
namespace DiscordNotifier.Discord
{
public interface IDiscordWebhookLogsService
{
Task PublishLogMessage(LogType logType, string message);
Task PublishLogEmbedded(LogType logType, EmbedBuilder embed);
Task PublishLogsEmbedded(LogType logType, List<EmbedBuilder> embeds);
}
}