34 lines
480 B
Go
34 lines
480 B
Go
|
// Code generated by sqlc. DO NOT EDIT.
|
||
|
// versions:
|
||
|
// sqlc v1.26.0
|
||
|
|
||
|
package db
|
||
|
|
||
|
import (
|
||
|
"github.com/jackc/pgx/v5/pgtype"
|
||
|
)
|
||
|
|
||
|
type Album struct {
|
||
|
ID int64
|
||
|
Path pgtype.Text
|
||
|
}
|
||
|
|
||
|
type Artist struct {
|
||
|
ID int64
|
||
|
Name pgtype.Text
|
||
|
}
|
||
|
|
||
|
type Track struct {
|
||
|
ID int64
|
||
|
Path string
|
||
|
AlbumArtist string
|
||
|
Title string
|
||
|
Album string
|
||
|
Disc [][]int32
|
||
|
Year int32
|
||
|
Artist string
|
||
|
Genre string
|
||
|
Lyrics string
|
||
|
Composer string
|
||
|
}
|