Update backend photobooth connect API

This commit is contained in:
Codex Agent
2026-01-12 16:59:49 +01:00
parent 2d81a3a319
commit 6e74d8f06f
55 changed files with 2973 additions and 190 deletions

View File

@@ -0,0 +1,17 @@
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();
}
}