mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-13 22:52:26 +00:00
Updated Readme to reflect new modules Added CocoaHTTPServer submodule Fixed SettingsWindow, works now with multiple tabs Added ServerSettings tab
18 lines
365 B
Objective-C
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
|