mirror of
https://github.com/sparkle-project/Sparkle.git
synced 2025-11-01 15:34:38 +00:00
18 lines
350 B
Objective-C
18 lines
350 B
Objective-C
//
|
|
// SUTestWebServer.h
|
|
// Sparkle
|
|
//
|
|
// Created by Kevin Wojniak on 10/8/15.
|
|
// Copyright © 2015 Sparkle Project. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
SPU_OBJC_DIRECT_MEMBERS @interface SUTestWebServer : NSObject
|
|
|
|
- (instancetype)initWithPort:(int)port workingDirectory:(NSString*)workingDirectory;
|
|
|
|
- (void)close;
|
|
|
|
@end
|