2017-12-15 03:09:35 +00:00
|
|
|
package multistore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2018-07-19 20:52:14 +00:00
|
|
|
"github.com/influxdata/platform/chronograf"
|
2017-12-15 03:09:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestInterfaceImplementation(t *testing.T) {
|
|
|
|
var _ chronograf.ServersStore = &KapacitorStore{}
|
|
|
|
}
|