Blame view
App/utils/Constants.swift
250 Bytes
|
defd9642e
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
//
// Created by Philip Tran on 3/4/17.
//
import Foundation
struct Constants {
struct PreferenceKeys {
static let ID = "ID";
}
struct PathManager{
static let ROOT_SERVER = "https://api-morooka.herokuapp.com/"
}
}
|