mirror of
https://github.com/Chenyu550/alist-fork.git
synced 2025-06-10 14:46:53 -04:00
9 lines
186 B
Go
9 lines
186 B
Go
package message
|
|
|
|
type Messenger interface {
|
|
Send(string, interface{}) error
|
|
WaitSend(string, interface{}) error
|
|
Receive(string) (string, error)
|
|
WaitReceive(string) (string, error)
|
|
}
|