From 9fcdd3ffa63a08433d7d773190f6ecb8b079aa4c Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Wed, 14 Feb 2024 11:34:25 -0800 Subject: [PATCH] Fix format warnings on ca/ca.go --- ca/ca.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ca/ca.go b/ca/ca.go index f2b0ff12..ca45b950 100644 --- a/ca/ca.go +++ b/ca/ca.go @@ -24,9 +24,9 @@ import ( "github.com/smallstep/certificates/api" "github.com/smallstep/certificates/authority" "github.com/smallstep/certificates/authority/admin" - "github.com/smallstep/certificates/cas/apiv1" adminAPI "github.com/smallstep/certificates/authority/admin/api" "github.com/smallstep/certificates/authority/config" + "github.com/smallstep/certificates/cas/apiv1" "github.com/smallstep/certificates/db" "github.com/smallstep/certificates/logging" "github.com/smallstep/certificates/monitoring" @@ -47,7 +47,7 @@ type options struct { sshHostPassword []byte sshUserPassword []byte database db.AuthDB - x509CAService apiv1.CertificateAuthorityService + x509CAService apiv1.CertificateAuthorityService } func (o *options) apply(opts []Option) {