faraday/db/sqlc/models.go

33 lines
503 B
Go
Raw Permalink Normal View History

2025-09-24 10:53:42 +02:00
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.25.0
package sqlc
import (
"database/sql"
"time"
)
type Channel struct {
ID int64
ChannelPoint string
ShortChannelID int64
PeerID int64
}
type ChannelEvent struct {
ID int64
ChannelID int64
EventType int16
Timestamp time.Time
LocalBalanceSat sql.NullInt64
RemoteBalanceSat sql.NullInt64
IsSync bool
2025-09-24 10:53:42 +02:00
}
type Peer struct {
ID int64
Pubkey string
}