dal/pkg/proto/response.go

11 lines
186 B
Go
Raw Normal View History

package proto
//go:generate msgp
type Response struct {
Id uint32 `msg:"i"`
RowsAffected int64 `msg:"ra"`
LastInsertId int64 `msg:"li"`
Msg string `msg:"m"`
}