mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-20 09:55:08 -04:00
14 lines
No EOL
340 B
C#
14 lines
No EOL
340 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 CliApplicationBuilder()
|
|
.AddCommandsFromThisAssembly()
|
|
.Build()
|
|
.RunAsync(args);
|
|
}
|
|
} |