feat: add setting view

This commit is contained in:
dscyrescotti
2024-07-17 21:29:13 +07:00
parent 4807ef1162
commit 167fa6baf6
11 changed files with 259 additions and 50 deletions
+19
View File
@@ -0,0 +1,19 @@
//
// AppWindow.swift
// Memola
//
// Created by Dscyre Scotti on 7/17/24.
//
import Foundation
enum AppWindow: String, Identifiable {
var id: String { rawValue }
case dashboard
case settings
var url: URL? {
URL(string: "memola:\(id)")
}
}