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