2017-12-15 03:09:35 +00:00
|
|
|
package multistore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2019-01-08 00:37:16 +00:00
|
|
|
"github.com/influxdata/influxdb/chronograf"
|
2017-12-15 03:09:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestInterfaceImplementation(t *testing.T) {
|
|
|
|
var _ chronograf.ServersStore = &KapacitorStore{}
|
|
|
|
}
|