generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
querier.go
24 lines (19 loc) · 961 Bytes
/
querier.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.26.0
package sql
import (
"context"
"github.com/alecthomas/types/optional"
)
type Querier interface {
GetModuleConfiguration(ctx context.Context, module optional.Option[string], name string) ([]byte, error)
GetModuleSecretURL(ctx context.Context, module optional.Option[string], name string) (string, error)
ListModuleConfiguration(ctx context.Context) ([]ModuleConfiguration, error)
ListModuleSecrets(ctx context.Context) ([]ModuleSecret, error)
SetModuleConfiguration(ctx context.Context, module optional.Option[string], name string, value []byte) error
SetModuleSecretURL(ctx context.Context, module optional.Option[string], name string, url string) error
UnsetModuleConfiguration(ctx context.Context, module optional.Option[string], name string) error
UnsetModuleSecret(ctx context.Context, module optional.Option[string], name string) error
}
var _ Querier = (*Queries)(nil)