Files
hotgo/hotgo-server/app/interfaces/queue_producer_interface.go
孟帅 8f3d679a57 tt
2022-02-25 17:11:17 +08:00

20 lines
318 B
Go
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// @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
}