Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Plugins/BotSharp.Plugin.ChatHub/Helpers/EventEmitter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

namespace BotSharp.Plugin.ChatHub.Helpers;

internal class EventEmitter
public class EventEmitter
{
internal static async Task SendChatEvent<T>(
public static async Task SendChatEvent<T>(
IServiceProvider services,
ILogger logger,
string @event,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class SqlSelect : IFunctionCallback
{
private readonly IServiceProvider _services;
public string Name => "util-db-sql_select";
public string Indication => "Extracting data";
public string Indication => "Generated query statement. I'm pulling the data from database, please wait";

public SqlSelect(IServiceProvider services)
{
Expand Down
Loading