Introduce a commercial license option alongside AGPL-3.0-only, require a CLA for contributors, and document the terms in COMMERCIAL.md and NOTICE. Add a script to stamp SPDX headers on Go files and apply it across the tree.
20 lines
458 B
Go
20 lines
458 B
Go
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Commercial
|
|
// SPDX-FileCopyrightText: 2025-2026 Christian Galo
|
|
|
|
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.29.0
|
|
|
|
package instance
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Querier interface {
|
|
GetInstanceSetting(ctx context.Context, key string) (CoreInstanceSetting, error)
|
|
UpsertInstanceSetting(ctx context.Context, arg UpsertInstanceSettingParams) error
|
|
}
|
|
|
|
var _ Querier = (*Queries)(nil)
|