chore: create temp file util

This commit is contained in:
Noah Hsu
2022-06-15 14:56:43 +08:00
parent 6cdd85283b
commit 066ddd3e09
2 changed files with 27 additions and 1 deletions

View File

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