mirror of
https://github.com/Sunnyyoung/WeChatTweak-macOS.git
synced 2025-05-23 06:46:10 +08:00
21 lines
375 B
Objective-C
21 lines
375 B
Objective-C
//
|
|
// Alfred.h
|
|
// WeChatTweak
|
|
//
|
|
// Created by Sunnyyoung on 2017/9/10.
|
|
// Copyright © 2017年 Sunnyyoung. All rights reserved.
|
|
//
|
|
|
|
#import <YYModel/YYModel.h>
|
|
#import <GCDWebServer/GCDWebServer.h>
|
|
#import <GCDWebServer/GCDWebServerDataResponse.h>
|
|
|
|
@interface AlfredManager : NSObject
|
|
|
|
+ (instancetype)sharedInstance;
|
|
|
|
- (void)startListener;
|
|
- (void)stopListener;
|
|
|
|
@end
|