10 lines
167 B
Swift
10 lines
167 B
Swift
import Foundation
|
|
import Services
|
|
import Views
|
|
|
|
extension Snackbar {
|
|
static func show(message: String) {
|
|
NSNotification.operationSuccess(message: message)
|
|
}
|
|
}
|