mirror of
https://github.com/lightninglabs/faraday.git
synced 2026-08-13 12:33:35 +02:00
21 lines
710 B
Go
21 lines
710 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.25.0
|
|
|
|
package sqlc
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Querier interface {
|
|
GetChannelByChanPoint(ctx context.Context, channelPoint string) (Channel, error)
|
|
GetChannelByShortChanID(ctx context.Context, shortChannelID int64) (Channel, error)
|
|
GetChannelEvents(ctx context.Context, arg GetChannelEventsParams) ([]ChannelEvent, error)
|
|
GetPeerByPubKey(ctx context.Context, pubkey string) (Peer, error)
|
|
InsertChannel(ctx context.Context, arg InsertChannelParams) (int64, error)
|
|
InsertChannelEvent(ctx context.Context, arg InsertChannelEventParams) error
|
|
InsertPeer(ctx context.Context, pubkey string) (int64, error)
|
|
}
|
|
|
|
var _ Querier = (*Queries)(nil)
|