
This just changes the version comments in the generated files. Now they're consistent with the version of sqlc tracked in go.mod. No functional changes.
17 lines
207 B
Go
17 lines
207 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.29.0
|
|
|
|
package sqlc
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type TaskUpdate struct {
|
|
ID int64
|
|
CreatedAt time.Time
|
|
TaskID string
|
|
Payload []byte
|
|
}
|