4b0f328f2e
- Add standalone C# console runner tests/e2e/runner/ using WTelegramClient - Provide TelegramUserClient wrapper: login, create supergroup, invite bot, send messages/commands, read recent messages, wait for bot reply - Add .env.example and runner .gitignore to keep secrets/session files out of git - Update E2E README with runner instructions and status table - Runner project intentionally excluded from GM-Relay.slnx to avoid CI/AOT impact Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
11 lines
322 B
C#
11 lines
322 B
C#
namespace GmRelay.E2E.Runner;
|
|
|
|
public sealed class RunnerConfig
|
|
{
|
|
public required int ApiId { get; init; }
|
|
public required string ApiHash { get; init; }
|
|
public required string PhoneNumber { get; init; }
|
|
public required string BotUsername { get; init; }
|
|
public required string BotToken { get; init; }
|
|
}
|