Files
2020-06-30 13:37:51 -03:00

8 lines
133 B
Go

package password
//Service interface
type Service interface {
Generate(raw string) (string, error)
Compare(p1, p2 string) error
}