minor change

This commit is contained in:
Joanna Ren 2025-09-17 12:43:17 -05:00
parent c391051f5e
commit b8e07ae6a0
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)
{