mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-27 09:45:45 +00:00
16 lines
320 B
Objective-C
16 lines
320 B
Objective-C
//
|
|
// LocalS3Signer.h
|
|
// Arq
|
|
//
|
|
// Created by Stefan Reitshamer on 12/30/10.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "S3Signer.h"
|
|
|
|
@interface LocalS3Signer : NSObject <S3Signer> {
|
|
NSString *secretKey;
|
|
}
|
|
- (id)initWithSecretKey:(NSString *)theSecretKey;
|
|
@end
|