mirror of
https://github.com/PrivateCaptcha/PrivateCaptcha.git
synced 2026-02-11 16:29:00 -06:00
19 lines
372 B
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
|
|
}
|