15 lines
344 B
Go
15 lines
344 B
Go
//go:build !commercial
|
|
|
|
// Package api - Community routes stub.
|
|
// This file is built when NO commercial tag is specified.
|
|
package api
|
|
|
|
import (
|
|
"github.com/go-chi/chi/v5"
|
|
)
|
|
|
|
// registerCommercialRoutes is a no-op in Community Edition.
|
|
func registerCommercialRoutes(r chi.Router, h *Handlers) {
|
|
// No commercial routes in Community Edition
|
|
}
|