20 lines
376 B
C
20 lines
376 B
C
//
|
|
// ApiHost.h
|
|
// xplan-ios
|
|
//
|
|
// Created by zu on 2021/9/6.
|
|
//
|
|
|
|
#ifndef ApiHost_h
|
|
#define ApiHost_h
|
|
|
|
#ifdef DEBUG
|
|
#define API_HOST_H5_URL @"http://h5dev.yinmeng.zhongjialx.com"
|
|
#define API_HOST_URL @"http://apidev.yinmeng.zhongjialx.com"
|
|
#else
|
|
#define API_HOST_H5_URL @"https://h5.nnbc123.cn"
|
|
#define API_HOST_URL @"https://api.nnbc123.cn"
|
|
#endif
|
|
|
|
#endif /* ApiHost_h */
|