Integrate bloks into flipper and monitor state updates

Summary: Client implementation for the flipper send data lispy api

Reviewed By: adamjernst

Differential Revision: D19862378

fbshipit-source-id: 7a5cc8b47772bdbc0e89d723d0099ff824a81ed5
This commit is contained in:
Sarah Dong
2020-02-13 08:56:14 -08:00
committed by Facebook Github Bot
parent d99635c85e
commit 00bfa39992
2 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#if FB_SONARKIT_ENABLED
#import <Foundation/Foundation.h>
#import <FlipperKit/FlipperPlugin.h>
@interface FlipperKitBloksPlugin : NSObject<FlipperPlugin>
- (void)logAction:(NSString *)action
withData:(NSDictionary *)data;
@end
#endif