Skip to content

Commit

Permalink
Rename CertificateName to CertificateType
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPresso committed Aug 24, 2021
1 parent 1454b58 commit 62831b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions types/certificate.go
Original file line number Diff line number Diff line change
@@ -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{}
}

0 comments on commit 62831b6

Please sign in to comment.