mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 11:37:32 +03:00
18 lines
241 B
C
18 lines
241 B
C
|
/**
|
||
|
* Tae Won Ha - http://taewon.de - @hataewon
|
||
|
* See LICENSE
|
||
|
*/
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface NeoVimAgent : NSObject
|
||
|
|
||
|
- (instancetype)initWithUuid:(NSString *)uuid;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|