Ferrite-backup/Ferrite/Extensions/NotificationCenter.swift
kingbri a89e832d1c Ferrite: Concurrency, cleanup, and format
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>
2022-10-05 10:48:02 -04:00

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")
}
}