Info returns plugin information
()
| 82 | |
| 83 | // Info returns plugin information |
| 84 | func (p *TestKVStoragePlugin) Info() plugin.Info { |
| 85 | return plugin.Info{ |
| 86 | Name: plugin.MakeTranslator("test_kv_storage_name"), |
| 87 | SlugName: "test_kv_storage", |
| 88 | Description: plugin.MakeTranslator("test_kv_storage_desc"), |
| 89 | Author: "Answer Team", |
| 90 | Version: "1.0.0", |
| 91 | Link: "https://github.com/apache/answer", |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | // SetOperator sets KV operator |
| 96 | func (p *TestKVStoragePlugin) SetOperator(operator *plugin.KVOperator) { |
nothing calls this directly
no test coverage detected