19 lines
417 B
Go
19 lines
417 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.26.0
|
|
|
|
package db
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Querier interface {
|
|
AddTrack(ctx context.Context, arg AddTrackParams) (Track, error)
|
|
Exists(ctx context.Context, path string) (bool, error)
|
|
GetAlbumTracks(ctx context.Context, album string) ([]Track, error)
|
|
GetTrackByID(ctx context.Context, id int64) (Track, error)
|
|
}
|
|
|
|
var _ Querier = (*Queries)(nil)
|