mirror of
https://github.com/lightninglabs/aperture.git
synced 2026-01-15 15:24:24 +01:00
35 lines
560 B
Go
35 lines
560 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.18.0
|
|
|
|
package sqlc
|
|
|
|
import (
|
|
"database/sql"
|
|
"time"
|
|
)
|
|
|
|
type LncSession struct {
|
|
ID int32
|
|
PassphraseWords string
|
|
PassphraseEntropy []byte
|
|
RemoteStaticPubKey []byte
|
|
LocalStaticPrivKey []byte
|
|
MailboxAddr string
|
|
CreatedAt time.Time
|
|
Expiry sql.NullTime
|
|
DevServer bool
|
|
}
|
|
|
|
type Onion struct {
|
|
PrivateKey []byte
|
|
CreatedAt time.Time
|
|
}
|
|
|
|
type Secret struct {
|
|
ID int32
|
|
Hash []byte
|
|
Secret []byte
|
|
CreatedAt time.Time
|
|
}
|