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