10 lines
232 B
Swift
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)
|
|
}
|
|
}
|