Create repo, add feature to set username

This commit is contained in:
2025-08-17 15:35:01 +02:00
commit 7b84754bd6
14 changed files with 656 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
//
// PeeredApp.swift
// Peered
//
// Created by Oskar Chybowski on 11/05/2025.
//
import SwiftUI
@main
struct PeeredApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}