chore: fix typo

refactor/fs
Noah Hsu 2022-07-01 16:08:08 +08:00
parent 4340a48633
commit a6e5edcf53
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,8 @@
package message
type Messager interface {
type Messenger interface {
Send(string, interface{}) error
WaitSend(string, interface{}) error
Receive(string) (string, error)
WaitReceive(string) (string, error)
}