dal/pkg/proto/response.go
Anton Nesterov 9d13824fdf
[wip] insert/update/delete operations
Signed-off-by: Anton Nesterov <anton@demiurg.io>
2024-08-15 17:52:21 +02:00

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"`
}