─── Mocks ───
| 21 | // ─── Mocks ─── |
| 22 | |
| 23 | type mockSettingRepo struct { |
| 24 | mu sync.Mutex |
| 25 | data map[string]string |
| 26 | } |
| 27 | |
| 28 | func newMockSettingRepo() *mockSettingRepo { |
| 29 | return &mockSettingRepo{data: make(map[string]string)} |
nothing calls this directly
no outgoing calls
no test coverage detected