mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-12 17:34:28 -05:00
12 lines
220 B
Go
12 lines
220 B
Go
package aws
|
|
|
|
import "github.com/edgelesssys/constellation/coordinator/oid"
|
|
|
|
type Issuer struct {
|
|
oid.AWS
|
|
}
|
|
|
|
func (i *Issuer) Issue(userData []byte, nonce []byte) ([]byte, error) {
|
|
panic("aws issuer not implemented")
|
|
}
|