2017-12-15 03:09:35 +00:00
|
|
|
package multistore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2020-04-03 17:39:20 +00:00
|
|
|
"github.com/influxdata/influxdb/v2/chronograf"
|
2017-12-15 03:09:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestInterfaceImplementation(t *testing.T) {
|
|
|
|
var _ chronograf.ServersStore = &KapacitorStore{}
|
|
|
|
}
|