9 lines
220 B
Go
9 lines
220 B
Go
package ports
|
|
|
|
// CodeGenerator generates cleartext confirmation codes for new auth
|
|
// challenges.
|
|
type CodeGenerator interface {
|
|
// Generate returns one fresh cleartext confirmation code.
|
|
Generate() (string, error)
|
|
}
|