mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-19 01:15:08 -04:00
17 lines
No EOL
390 B
C#
17 lines
No EOL
390 B
C#
using System;
|
|
using AmmySidekick;
|
|
|
|
namespace DiscordChatExporter.Gui
|
|
{
|
|
public static class Program
|
|
{
|
|
[STAThread]
|
|
public static void Main()
|
|
{
|
|
var app = new App();
|
|
app.InitializeComponent();
|
|
RuntimeUpdateHandler.Register(app, $"/{Ammy.GetAssemblyName(app)};component/App.g.xaml");
|
|
app.Run();
|
|
}
|
|
}
|
|
} |