Upgrade acmeserver to github.com/go-chi/chi/v5 (#5913)

This commit upgrades the router used in the acmeserver to
github.com/go-chi/chi/v5. In the latest release of step-ca, the router
used by certificates was upgraded to that version.

Fixes #5911

Signed-off-by: Mariano Cano <mariano.cano@gmail.com>
This commit is contained in:
Mariano Cano
2023-10-23 18:02:11 -07:00
committed by GitHub
parent 4c10a05431
commit ac0ad4da84
3 changed files with 2 additions and 5 deletions

View File

@ -26,7 +26,7 @@ import (
"strings"
"time"
"github.com/go-chi/chi"
"github.com/go-chi/chi/v5"
"github.com/smallstep/certificates/acme"
"github.com/smallstep/certificates/acme/api"
acmeNoSQL "github.com/smallstep/certificates/acme/db/nosql"