Create IGSQLiteDatabaseDriver and integrate it with instamadillo e2ee flow.

Summary: IGSQLiteDatabaseDriver implements the DatabaseDriver protocol that is required to flipper send requests from desktop app to the client.

Differential Revision: D48172578

fbshipit-source-id: 09ac9415dd1b98c347984228def617f27d2e1aa0
This commit is contained in:
Fúlvio Abrahão de Paula
2023-08-21 08:15:11 -07:00
committed by Facebook GitHub Bot
parent 7210c8944b
commit 4cf63cee71

View File

@@ -5,6 +5,8 @@
* LICENSE file in the root directory of this source tree. * LICENSE file in the root directory of this source tree.
*/ */
#if FB_SONARKIT_ENABLED
#import <FlipperKit/FlipperPlugin.h> #import <FlipperKit/FlipperPlugin.h>
#import <Foundation/Foundation.h> #import <Foundation/Foundation.h>
#import "DatabaseDriver.h" #import "DatabaseDriver.h"
@@ -20,3 +22,5 @@
- (void)removeDatabaseDriver:(id<DatabaseDriver>)driver; - (void)removeDatabaseDriver:(id<DatabaseDriver>)driver;
@end @end
#endif