mirror of
https://github.com/AlistGo/alist.git
synced 2025-05-01 12:24:06 +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)
|
|
}
|