mirror of
https://github.com/lordmathis/lemma.git
synced 2025-11-05 15:44:21 +00:00
7 lines
192 B
Go
7 lines
192 B
Go
package db_test
|
|
|
|
type mockSecrets struct{}
|
|
|
|
func (m *mockSecrets) Encrypt(s string) (string, error) { return s, nil }
|
|
func (m *mockSecrets) Decrypt(s string) (string, error) { return s, nil }
|