All checks were successful
continuous-integration/drone/push Build is passing
20 lines
510 B
Go
20 lines
510 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.24.0
|
|
|
|
package ntpdb
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Querier interface {
|
|
GetServerByID(ctx context.Context, id uint32) (Server, error)
|
|
GetServerByIP(ctx context.Context, ip string) (Server, error)
|
|
GetServerNetspeed(ctx context.Context, ip string) (uint32, error)
|
|
GetZoneStatsData(ctx context.Context) ([]GetZoneStatsDataRow, error)
|
|
GetZoneStatsV2(ctx context.Context, ip string) ([]GetZoneStatsV2Row, error)
|
|
}
|
|
|
|
var _ Querier = (*Queries)(nil)
|