Merge pull request #1166 from Joannall/master

minor change
This commit is contained in:
Haiping 2025-09-17 12:48:11 -05:00 committed by GitHub
commit 29c3fa55a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -3,9 +3,9 @@ using System.Runtime.CompilerServices;
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,

View file

@ -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)
{