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.
13 lines
344 B
Go
13 lines
344 B
Go
// SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Commercial
|
|
// SPDX-FileCopyrightText: 2025-2026 Christian Galo
|
|
|
|
package queues
|
|
|
|
const (
|
|
// Main is the primary task queue for the embedded worker.
|
|
Main = "member-console-main"
|
|
|
|
// External is for workflows that need to run on a separate worker.
|
|
External = "member-console-external"
|
|
)
|