From 62831b66ff6c7689fca0b2e9eaa8006d9bbac4cb Mon Sep 17 00:00:00 2001 From: AlexPresso Date: Tue, 24 Aug 2021 15:14:40 +0200 Subject: [PATCH] Rename CertificateName to CertificateType --- types/certificate.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/types/certificate.go b/types/certificate.go index a5233a4..e108deb 100644 --- a/types/certificate.go +++ b/types/certificate.go @@ -1,13 +1,13 @@ package types const ( - DCC CertificateName = "DCC" - TWODDOC CertificateName = "2DDOC" + DCC CertificateType = "DCC" + TWODDOC CertificateType = "2DDOC" ) -type CertificateName string +type CertificateType string type Certificate struct { - Type CertificateName + Type CertificateType Data interface{} }