12 lines
316 B
Swift
12 lines
316 B
Swift
// Copyright © 2022-present 650 Industries. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
@objc(EXUpdatesControllerRegistry)
|
|
@objcMembers
|
|
public final class UpdatesControllerRegistry: NSObject {
|
|
public weak var controller: UpdatesExternalInterface?
|
|
|
|
public static let sharedInstance = UpdatesControllerRegistry()
|
|
}
|