Files
MacPass/MacPass/MPConnection.m
michael starke 236e7036bc Remove DMSplitView as it's never used
Updated Readme to reflect new modules
Added CocoaHTTPServer submodule
Fixed SettingsWindow, works now with multiple tabs
Added ServerSettings tab
2013-06-17 01:29:29 +02:00

18 lines
365 B
Objective-C

//
// MPConnection.m
// MacPass
//
// Created by Michael Starke on 16.06.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import "MPConnection.h"
@implementation MPConnection
- (NSObject<HTTPResponse> *)httpResponseForMethod:(NSString *)method URI:(NSString *)path {
return [super httpResponseForMethod:method URI:path];
}
@end