Files
GitHawk/Classes/Systems/Secrets.m
2017-11-21 17:22:38 -05:00

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