add new func of logcatch

This commit is contained in:
zhongchao
2021-12-16 19:20:47 +08:00
parent e8840a45fa
commit 311e5e0af1
32 changed files with 360 additions and 545 deletions

View File

@@ -0,0 +1,13 @@
package com.mogo.eagle.core.function.api.devatools
import com.mogo.eagle.core.function.api.base.IMoGoFunctionServerProvider
/**
* 开发套件工具接口
*/
interface IDevaToolsProvider : IMoGoFunctionServerProvider {
fun startLogCatch()
fun stopLogCatch()
}

View File

@@ -0,0 +1,11 @@
package com.mogo.eagle.core.function.api.devatools
/**
* 开发套件工具接口
*/
interface IMoGoDevaToolsListener {
fun onLogCatchClose(){
}
}