mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-10 15:57:30 -06:00
11 lines
211 B
Swift
11 lines
211 B
Swift
import FirebaseCore
|
|
import WatchKit
|
|
|
|
class ExtensionDelegate: NSObject, WKExtensionDelegate {
|
|
func applicationDidFinishLaunching() {
|
|
#if !DEBUG
|
|
FirebaseApp.configure()
|
|
#endif
|
|
}
|
|
}
|