Use strict concurrency checking in Xcode 14 to find misuses with Swift concurrency. Cleanup files and rearrange them along with fixing comment headers. Signed-off-by: kingbri <bdashore3@proton.me>
14 lines
248 B
Swift
14 lines
248 B
Swift
//
|
|
// NotificationCenter.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 9/3/22.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Notification.Name {
|
|
static var didDeleteBookmark: Notification.Name {
|
|
Notification.Name("Deleted bookmark")
|
|
}
|
|
}
|