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.
29 lines
931 B
Go
29 lines
931 B
Go
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Commercial
|
|
// SPDX-FileCopyrightText: 2025-2026 Christian Galo
|
|
|
|
/*
|
|
Copyright © 2025-2026 Christian Galo
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of version 3 of the GNU Affero General Public License as
|
|
published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
A separate commercial license is available from the copyright holder; see
|
|
COMMERCIAL.md.
|
|
*/
|
|
package main
|
|
|
|
import "git.coopcloud.tech/wiki-cafe/member-console/cmd"
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|