mirror of
https://github.com/AlistGo/alist.git
synced 2025-06-16 00:52:01 +08:00
7 lines
111 B
Go
7 lines
111 B
Go
package message
|
|
|
|
type Messager interface {
|
|
Send(string, interface{}) error
|
|
Receive(string) (string, error)
|
|
}
|