remove stale code in comments

This commit is contained in:
Gibheer 2017-06-01 15:11:23 +02:00
parent bc84bc4a28
commit 92020d30b7
1 changed files with 0 additions and 19 deletions

View File

@ -10,16 +10,6 @@ import (
"github.com/gibheer/pkiadm"
)
//const (
// RTPrivateKey ResourceType = iota
// RTPublicKey
// RTCSR
// RTCertificate
// RTLocation
// RTSerial
// RTSubject
//)
const (
ENoIDGiven = Error("no ID given")
EUnknownType = Error("unknown type found")
@ -43,20 +33,11 @@ type (
DependsOn() []pkiadm.ResourceName
}
// ResourceName struct {
// ID string
// Type ResourceType
// }
ResourceType uint
Error string
)
func (e Error) Error() string { return string(e) }
//func (r ResourceName) String() string { return r.Type.String() + "/" + r.ID }
func main() {
os.Exit(_main())
}