f8e28d2a2e
Signed-off-by: Anton Nesterov <anton@demiurg.io>
11 lines
186 B
Go
11 lines
186 B
Go
package proto
|
|
|
|
//go:generate msgp
|
|
|
|
type Response struct {
|
|
Id uint32 `msg:"i"`
|
|
RowsAffected int64 `msg:"ra"`
|
|
LastInsertId int64 `msg:"li"`
|
|
Msg string `msg:"m"`
|
|
}
|