Update NuGet packages

This commit is contained in:
Oleksii Holub
2022-12-08 22:19:19 +02:00
parent f3830247fe
commit 07b72b9023
6 changed files with 2 additions and 6 deletions

View File

@@ -12,7 +12,6 @@ public abstract class TokenCommandBase : ICommand
[CommandOption(
"token",
't',
IsRequired = true,
EnvironmentVariable = "DISCORD_TOKEN",
Description = "Authentication token."
)]

View File

@@ -15,7 +15,6 @@ public class ExportChannelsCommand : ExportCommandBase
[CommandOption(
"channel",
'c',
IsRequired = true,
Description = "Channel ID(s)."
)]
public required IReadOnlyList<Snowflake> ChannelIds { get; init; }

View File

@@ -15,7 +15,6 @@ public class ExportGuildCommand : ExportCommandBase
[CommandOption(
"guild",
'g',
IsRequired = true,
Description = "Guild ID."
)]
public required Snowflake GuildId { get; init; }

View File

@@ -16,7 +16,6 @@ public class GetChannelsCommand : TokenCommandBase
[CommandOption(
"guild",
'g',
IsRequired = true,
Description = "Guild ID."
)]
public required Snowflake GuildId { get; init; }