You've already forked reloading-manager
17 lines
340 B
Go
17 lines
340 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.27.0
|
|
|
|
package manufacturer
|
|
|
|
import (
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
)
|
|
|
|
type Manufacturer struct {
|
|
ID pgtype.UUID `json:"id"`
|
|
Name string `json:"name"`
|
|
Url pgtype.Text `json:"url"`
|
|
CreatedAt pgtype.Timestamp `json:"created_at"`
|
|
}
|