add queue package

This commit is contained in:
kevin
2020-08-13 17:00:53 +08:00
parent 5f084fb7d2
commit 6fdee77fa9
11 changed files with 610 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package queue
type MessageQueue interface {
Start()
Stop()
}