blob: 09208aa54ff7715f68625a623d859b50a221b2a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.27.0
package sqlc
import (
"github.com/jackc/pgx/v5/pgtype"
)
type Favourite struct {
ID int32 `json:"id"`
UserID int32 `json:"user_id"`
EventGuid pgtype.UUID `json:"event_guid"`
EventID pgtype.Int4 `json:"event_id"`
}
type User struct {
ID int32 `json:"id"`
Username string `json:"username"`
Password string `json:"password"`
}
|