18 lines
274 B
C
18 lines
274 B
C
//
|
|
// ApiHost.h
|
|
// xplan-ios
|
|
//
|
|
// Created by zu on 2021/9/6.
|
|
//
|
|
|
|
#ifndef ApiHost_h
|
|
#define ApiHost_h
|
|
|
|
#ifdef DEBUG
|
|
#define API_HOST_URL @"http://api.uat.lecheng163.com"
|
|
#else
|
|
#define API_HOST_URL @"https://yinyou.api.shengxuanwangluo.com"
|
|
#endif
|
|
|
|
#endif /* ApiHost_h */
|