forked from JJUNGTABLE/iOS
29 lines
931 B
Swift
29 lines
931 B
Swift
//
|
|
// KEY.swift
|
|
// JJUNGTABLE
|
|
//
|
|
// Created by Sean Kim on 1/9/24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum KEY {
|
|
static let kakaoAppKey: String = "8ff66cbbf8fb74673db5c642c64dda73"
|
|
static let appStoreURL: String = ""
|
|
// public var SERVER_URL = "http://ipstein.myds.me:6004/"
|
|
#if DEVELOPE
|
|
static let apiLink: String = ""
|
|
#else
|
|
static let apiLink: String = "http://ipstein.myds.me:6000/"
|
|
#endif
|
|
|
|
static let naverGeocodingURL: String = "https://naveropenapi.apigw.ntruss.com/map-geocode/v2/geocode?"
|
|
static let naverReverseGeocodingURL: String = "https://naveropenapi.apigw.ntruss.com/map-reversegeocode/v2/gc?"
|
|
static let naverClientID = ("X-NCP-APIGW-API-KEY-ID", "qc2z3auwbq")
|
|
static let naverClientSecret = ("X-NCP-APIGW-API-KEY", "OY9b0gsIppzwvqzYMcamyBGSI3QblFsICGBBuHpN")
|
|
|
|
// 주소 검색 web 주소
|
|
static let githubPagesLink: String = "https://sean-59.github.io/Kakao-Postcode/"
|
|
|
|
}
|