mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-22 19:59:29 +00:00
18 lines
326 B
Objective-C
18 lines
326 B
Objective-C
//
|
|
// MPServerRequestHandler.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 17.06.13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@protocol MPServerRequestHandling <NSObject>
|
|
|
|
@required
|
|
- (NSString *)identifier;
|
|
- (void)respondTo:(NSDictionary *)data;
|
|
|
|
@end
|