mirror of
https://github.com/neon443/NearFuture.git
synced 2026-03-11 14:56:15 +00:00
18 lines
266 B
Swift
18 lines
266 B
Swift
//
|
|
// NFCommands.swift
|
|
// MacNearFuture
|
|
//
|
|
// Created by neon443 on 21/05/2025.
|
|
//
|
|
|
|
import Foundation
|
|
import SwiftUI
|
|
|
|
struct NearFutureCommands: Commands {
|
|
var body: some Commands {
|
|
CommandGroup(after: CommandGroupPlacement.appInfo) {
|
|
// Text("hi")
|
|
}
|
|
}
|
|
}
|