This commit is contained in:
Jonathan Leibiusky @xetorthio
2017-05-23 19:29:36 -03:00
parent 911d56bc49
commit 3d96760a98
41 changed files with 1454 additions and 1329 deletions

11
pwd/storage_mock_test.go Normal file
View File

@@ -0,0 +1,11 @@
package pwd
type mockStorage struct {
}
func (m *mockStorage) Save() error {
return nil
}
func (m *mockStorage) Load() error {
return nil
}