mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-08-28 09:15:50 +08:00
20 lines
318 B
Go
20 lines
318 B
Go
//
|
||
// @Package interfaces
|
||
// @Description
|
||
// @Author Ms <133814250@qq.com>
|
||
//
|
||
package interfaces
|
||
|
||
//
|
||
// QueueProducer
|
||
// @Description
|
||
//
|
||
type QueueProducer interface {
|
||
//
|
||
// @Title
|
||
// @Description
|
||
// @Author Ms <133814250@qq.com>
|
||
// @Return string
|
||
//
|
||
Push() string
|
||
} |