mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-05-25 18:32:22 +08:00
26 lines
386 B
Objective-C
26 lines
386 B
Objective-C
//
|
|
// Secrets.m
|
|
// Freetime
|
|
//
|
|
// Created by Ryan Nystrom on 11/19/17.
|
|
// Copyright © 2017 Ryan Nystrom. All rights reserved.
|
|
//
|
|
|
|
#import "Secrets.h"
|
|
|
|
@implementation Secrets
|
|
|
|
+ (NSString *)githubClientID {
|
|
return GITHUB_CLIENT_ID;
|
|
}
|
|
|
|
+ (NSString *)githubClientSecret {
|
|
return GITHUB_CLIENT_SECRET;
|
|
}
|
|
|
|
+ (NSString *)imgurClientID {
|
|
return GITHUB_CLIENT_SECRET;
|
|
}
|
|
|
|
@end
|