Files
fotospiel-app/clients/photobooth-uploader/PhotoboothUploader/App.xaml.cs
Codex Agent 24f053d4c4
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled
Add photobooth connect codes and uploader pipeline
2026-01-12 17:02:50 +01:00

18 lines
309 B
C#

using Microsoft.UI.Xaml;
namespace PhotoboothUploader;
public partial class App : Application
{
public App()
{
InitializeComponent();
}
protected override void OnLaunched(LaunchActivatedEventArgs args)
{
var window = new MainWindow();
window.Activate();
}
}