feat: add password and fix errors

This commit is contained in:
Elton Minetto
2020-06-29 13:38:13 -03:00
parent 328b4e428c
commit d4b9b713e4
12 changed files with 246 additions and 21 deletions
+7
View File
@@ -0,0 +1,7 @@
package password
//UseCase interface
type UseCase interface {
Generate(raw string) (string, error)
Compare(p1, p2 string) error
}