mirror of
https://github.com/dscyrescotti/Memola.git
synced 2026-03-28 12:12:00 +01:00
20 lines
275 B
Swift
20 lines
275 B
Swift
//
|
|
// 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)")
|
|
}
|
|
}
|