Files
galaxy-game/authsession/internal/ports/code_generator.go
T
2026-04-08 16:23:07 +02:00

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)
}