Remove unused wfe2 route constants (#4904)

The /acme/challenge and /acme/authz routes have no
associated handlers, and the challengePath and authzPath
constants have no code references.
This commit is contained in:
Aaron Gable 2020-06-25 14:57:35 -07:00 committed by GitHub
parent a505ff80bb
commit edee82d572
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -44,12 +44,10 @@ const (
directoryPath = "/directory" directoryPath = "/directory"
newAcctPath = "/acme/new-acct" newAcctPath = "/acme/new-acct"
acctPath = "/acme/acct/" acctPath = "/acme/acct/"
authzPath = "/acme/authz/"
// For user-facing URLs we use a "v3" suffix to avoid potential confusiong // For user-facing URLs we use a "v3" suffix to avoid potential confusiong
// regarding ACMEv2. // regarding ACMEv2.
authzv2Path = "/acme/authz-v3/" authzv2Path = "/acme/authz-v3/"
challengev2Path = "/acme/chall-v3/" challengev2Path = "/acme/chall-v3/"
challengePath = "/acme/challenge/"
certPath = "/acme/cert/" certPath = "/acme/cert/"
revokeCertPath = "/acme/revoke-cert" revokeCertPath = "/acme/revoke-cert"
issuerPath = "/acme/issuer-cert" issuerPath = "/acme/issuer-cert"