2026-07-23 01:04:37 +00:00
|
|
|
import Foundation
|
|
|
|
|
import Infrastructure
|
|
|
|
|
|
|
|
|
|
public extension LocalizationMiddleware {
|
|
|
|
|
|
|
|
|
|
// MARK: Initializers
|
|
|
|
|
|
|
|
|
|
/// Creates a localization middleware that negotiates against the module's String Catalog languages.
|
|
|
|
|
init() {
|
|
|
|
|
self.init(bundle: .module)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|