8 lines
217 B
Swift
8 lines
217 B
Swift
|
import Foundation
|
||
|
|
||
|
@objc public final class LocationManagerFactory: NSObject {
|
||
|
@objc static func coarseLocationManager() -> LocationManagerProtocol {
|
||
|
return LocationManager(configuration: .coarse)
|
||
|
}
|
||
|
}
|