添加探路api接口实现

This commit is contained in:
tongchenfei
2020-08-10 14:39:15 +08:00
parent ee53d50cdb
commit ec50a12a6c
23 changed files with 207 additions and 23 deletions

View File

@@ -234,8 +234,8 @@ public class MogoServicePaths {
public static final String PATH_LOG_LIB = "/loglib/api";
/**
* 探路相关
* 探路api
*/
@Deprecated
public static final String PATH_TANLU = "/tanlu/ui";
public static final String PATH_TANLU_API = "/tanlulib/api";
}

View File

@@ -51,4 +51,9 @@ public interface IMogoTanluProvider extends IProvider {
* @param type 情报类型
*/
void uploadRoadCondition(String type);
/**
* 开启探路业务服务
*/
void startTanluService();
}