-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathmodels.go
More file actions
75 lines (65 loc) · 1.62 KB
/
models.go
File metadata and controls
75 lines (65 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.29.0
package ondeck
import (
"database/sql"
"database/sql/driver"
"fmt"
"time"
)
// Venues can be either open or closed
type Status string
const (
StatusOpen Status = "op!en"
StatusClosed Status = "clo@sed"
)
func (e *Status) Scan(src interface{}) error {
switch s := src.(type) {
case []byte:
*e = Status(s)
case string:
*e = Status(s)
default:
return fmt.Errorf("unsupported scan type for Status: %T", src)
}
return nil
}
type NullStatus struct {
Status Status `json:"status"`
Valid bool `json:"valid"` // Valid is true if Status is not NULL
}
// Scan implements the Scanner interface.
func (ns *NullStatus) Scan(value interface{}) error {
if value == nil {
ns.Status, ns.Valid = "", false
return nil
}
ns.Valid = true
return ns.Status.Scan(value)
}
// Value implements the driver Valuer interface.
func (ns NullStatus) Value() (driver.Value, error) {
if !ns.Valid {
return nil, nil
}
return string(ns.Status), nil
}
type City struct {
Slug string `json:"slug"`
Name string `json:"name"`
}
// Venues are places where muisc happens
type Venue struct {
ID int32 `json:"id"`
Status Status `json:"status"`
Statuses []Status `json:"statuses"`
// This value appears in public URLs
Slug string `json:"slug"`
Name string `json:"name"`
City string `json:"city"`
SpotifyPlaylist string `json:"spotify_playlist"`
SongkickID sql.NullString `json:"songkick_id"`
Tags []string `json:"tags"`
CreatedAt time.Time `json:"created_at"`
}