fix: function names

This commit is contained in:
Elton Minetto
2020-06-30 13:37:51 -03:00
parent 4c6b43b04d
commit 2ae9c39824
11 changed files with 50 additions and 50 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
package password
//UseCase interface
type UseCase interface {
//Service interface
type Service interface {
Generate(raw string) (string, error)
Compare(p1, p2 string) error
}