2026-03-02 01:52:10 +07:00

6 lines
93 B
Go

package password
type IPasswordGenerator interface {
GeneratePassword(length int) string
}