email/utils/bytes.go

9 lines
119 B
Go
Raw Permalink Normal View History

2022-11-23 02:50:34 +00:00
package utils
import "encoding/json"
func ToBytes(data interface{}) []byte {
b, _ := json.Marshal(data)
return b
}