forked from TrueCloudLab/xk6-frostfs
20 lines
301 B
Go
20 lines
301 B
Go
|
package xk6_neofs
|
||
|
|
||
|
import (
|
||
|
_ "github.com/nspcc-dev/xk6-neofs/internal/native"
|
||
|
_ "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
|
||
|
}
|