1
0
Fork 0
forked from External/ergo
ergo/irc/mysql/serialization.go
2024-11-28 02:58:14 +00:00

18 lines
436 B
Go

package mysql
import (
"encoding/json"
"github.com/ergochat/ergo/irc/history"
)
// 123 / '{' is the magic number that means JSON;
// if we want to do a binary encoding later, we just have to add different magic version numbers
func marshalItem(item *history.Item) (result []byte, err error) {
return json.Marshal(item)
}
func unmarshalItem(data []byte, result *history.Item) (err error) {
return json.Unmarshal(data, result)
}