mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-03-29 18:05:29 +00:00
14 lines
315 B
C#
14 lines
315 B
C#
using System.Threading.Tasks;
|
|
using CliFx;
|
|
|
|
namespace DiscordChatExporter.Cli;
|
|
|
|
public static class Program
|
|
{
|
|
public static async Task<int> Main(string[] args) =>
|
|
await new CommandLineApplicationBuilder()
|
|
.AddCommandsFromThisAssembly()
|
|
.Build()
|
|
.RunAsync(args);
|
|
}
|