remove old code

This commit is contained in:
chrislu
2022-07-10 01:36:23 -07:00
parent f25e273e32
commit 8060fdcac5
25 changed files with 299 additions and 3522 deletions

12
weed/mq/broker.go Normal file
View File

@@ -0,0 +1,12 @@
package mq
const LAST_MINUTES = 10
type TopicStat struct {
MessageCounts [LAST_MINUTES]int64
ByteCounts [LAST_MINUTES]int64
}
func NewTopicStat() *TopicStat {
return &TopicStat{}
}