feat: add dfbench cmd
Signed-off-by: Gaius <gaius.qi@gmail.com>
This commit is contained in:
parent
e91782829b
commit
2d7a7de23c
|
|
@ -14,7 +14,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package dfbench
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package dfbench
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package dfbench
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
|
@ -16,8 +16,10 @@
|
|||
|
||||
package main
|
||||
|
||||
import "github.com/dragonflyoss/perf-tests/cmd/dfbench"
|
||||
import (
|
||||
"github.com/dragonflyoss/perf-tests/cmd/dfbench/cmd"
|
||||
)
|
||||
|
||||
func main() {
|
||||
dfbench.Execute()
|
||||
cmd.Execute()
|
||||
}
|
||||
Loading…
Reference in New Issue