constellation/internal/attestation/aws/issuer.go
Daniel Weiße 3467df6b69 Move attestation, atls and oid packages to internal directory
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
2022-06-08 17:17:06 +02:00

12 lines
217 B
Go

package aws
import "github.com/edgelesssys/constellation/internal/oid"
type Issuer struct {
oid.AWS
}
func (i *Issuer) Issue(userData []byte, nonce []byte) ([]byte, error) {
panic("aws issuer not implemented")
}