Files
Memola/Memola/Shortcut/EnvironmentValues/ShortcutKey.swift
2024-07-14 16:44:21 +07:00

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] }
}
}