2022-05-12 19:37:38 +00:00
|
|
|
package xk6_neofs
|
|
|
|
|
|
|
|
import (
|
2022-09-02 19:23:33 +00:00
|
|
|
_ "github.com/nspcc-dev/xk6-neofs/internal/datagen"
|
2022-05-12 19:37:38 +00:00
|
|
|
_ "github.com/nspcc-dev/xk6-neofs/internal/native"
|
2022-09-02 19:23:33 +00:00
|
|
|
_ "github.com/nspcc-dev/xk6-neofs/internal/registry"
|
2022-05-12 19:37:38 +00:00
|
|
|
_ "github.com/nspcc-dev/xk6-neofs/internal/s3"
|
|
|
|
"go.k6.io/k6/js/modules"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
version = "v0.1.0"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
modules.Register("k6/x/neofs", &NeoFS{Version: version})
|
|
|
|
}
|
|
|
|
|
|
|
|
type NeoFS struct {
|
|
|
|
Version string
|
|
|
|
}
|