mirror of
https://github.com/dscyrescotti/Memola.git
synced 2026-03-24 18:31:23 +01:00
19 lines
302 B
Swift
19 lines
302 B
Swift
//
|
|
// ShortcutKey.swift
|
|
// Memola
|
|
//
|
|
// Created by Dscyre Scotti on 7/12/24.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
private struct ShortcutKey: EnvironmentKey {
|
|
static var defaultValue: Shortcut = .shared
|
|
}
|
|
|
|
extension EnvironmentValues {
|
|
var shortcut: Shortcut {
|
|
get { self[ShortcutKey.self] }
|
|
}
|
|
}
|