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.
18 lines
287 B
Go
18 lines
287 B
Go
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Commercial
|
|
// SPDX-FileCopyrightText: 2025-2026 Christian Galo
|
|
|
|
package embeds
|
|
|
|
import (
|
|
"embed"
|
|
)
|
|
|
|
//go:embed static
|
|
var Static embed.FS
|
|
|
|
//go:embed templates
|
|
var Templates embed.FS
|
|
|
|
//go:embed mc-config.yaml
|
|
var Config embed.FS
|