mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-23 03:06:53 -04:00
19 lines
No EOL
414 B
C#
19 lines
No EOL
414 B
C#
using System.Windows;
|
|
|
|
namespace DiscordChatExporter.Gui
|
|
{
|
|
public partial class App
|
|
{
|
|
private Container Container => (Container) Resources["Container"];
|
|
|
|
private void App_Startup(object sender, StartupEventArgs e)
|
|
{
|
|
Container.Init();
|
|
}
|
|
|
|
private void App_Exit(object sender, ExitEventArgs e)
|
|
{
|
|
Container.Cleanup();
|
|
}
|
|
}
|
|
} |