Finish the feature of share and bridge.

This commit is contained in:
zicla
2019-04-29 21:14:29 +08:00
parent ca721c78e6
commit d75c4a222e
20 changed files with 605 additions and 330 deletions

9
code/core/application.go Normal file
View File

@ -0,0 +1,9 @@
package core
/**
* 从命令行输入的相关信息
*/
type Application interface {
//启动整个应用
Start()
}