中间件

This commit is contained in:
86150 2021-08-22 15:31:53 +08:00
parent f8f653c6f9
commit 8b676d1ad2
4 changed files with 30 additions and 1 deletions

30
pkg/middle/MIDDLE.go Normal file
View File

@ -0,0 +1,30 @@
package middle
type msg struct {
msgType map[string]interface{}
}
//获取权值
func GetMiddleWeight() {
}
//弹出中间件
func PopMiddle() {
}
//输入数据
func GetData() {
}
//输出数据
func OutData() {
}
//驱动
func Driver() {
}

View File

@ -1 +0,0 @@
package define