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