Remove nolint: gocyclo from relayapi routing setup

This commit is contained in:
Devon Hudson 2023-01-31 16:13:59 -07:00
parent 529feb07ee
commit 2f8377e94b
No known key found for this signature in database
GPG Key ID: CD06B18E77F6A628

View File

@ -34,10 +34,6 @@ import (
// The provided publicAPIMux MUST have `UseEncodedPath()` enabled or else routes will incorrectly
// path unescape twice (once from the router, once from MakeRelayAPI). We need to have this enabled
// so we can decode paths like foo/bar%2Fbaz as [foo, bar/baz] - by default it will decode to [foo, bar, baz]
//
// Due to Setup being used to call many other functions, a gocyclo nolint is
// applied:
// nolint: gocyclo
func Setup(
fedMux *mux.Router,
cfg *config.FederationAPI,