mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
10 lines
345 B
Go
10 lines
345 B
Go
|
// Package engine can be imported to initialize and register all available TSDB engines.
|
||
|
//
|
||
|
// Alternatively, you can import any individual subpackage underneath engine.
|
||
|
package engine // import "github.com/influxdata/influxdb/tsdb/engine"
|
||
|
|
||
|
import (
|
||
|
// Initialize and register tsm1 engine
|
||
|
_ "github.com/influxdata/influxdb/tsdb/engine/tsm1"
|
||
|
)
|