feat: add dfbench cmd

Signed-off-by: Gaius <gaius.qi@gmail.com>
This commit is contained in:
Gaius 2024-11-01 13:47:19 +08:00
parent e91782829b
commit 2d7a7de23c
No known key found for this signature in database
GPG Key ID: 647A0EE86907F1AF
4 changed files with 7 additions and 5 deletions

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package dfbench
package cmd
import (
"context"

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package dfbench
package cmd
import (
"context"

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
package dfbench
package cmd
import (
"os"

View File

@ -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()
}