1 //  Copyright © 2022-present 650 Industries. All rights reserved.
2 
3 import Foundation
4 
5 @objc(EXUpdatesControllerRegistry)
6 @objcMembers
7 public final class UpdatesControllerRegistry: NSObject {
8   public weak var controller: UpdatesExternalInterface?
9 
10   public static let sharedInstance = UpdatesControllerRegistry()
11 }
12