Files
omnivore/apple/OmnivoreKit/Sources/App/SnackbarExtension.swift
2023-07-27 14:06:29 +08:00

10 lines
232 B
Swift

import Foundation
import Services
import Views
extension Snackbar {
static func showInLibrary(message: String, undoAction: (() -> Void)? = nil) {
NSNotification.librarySnackBar(message: message, undoAction: undoAction)
}
}