Files
PrivateCaptcha/pkg/api/server_not_enterprise.go

19 lines
372 B
Go

//go:build !enterprise
package api
import (
"context"
"net/http"
"github.com/PrivateCaptcha/PrivateCaptcha/pkg/common"
"github.com/justinas/alice"
)
func (s *Server) setupEnterprise(rg *common.RouteGenerator, publicChain alice.Chain, apiRateLimiter func(next http.Handler) http.Handler) {
}
func (s *Server) RegisterTaskHandlers(ctx context.Context) {
// BUMP
}