loic-go/cmd/stop.go

19 lines
328 B
Go
Raw Permalink Normal View History

2025-03-25 16:53:35 +00:00
package cmd
import (
"forgejo.edf-bootstrap.cx.fg1.ffm.osc.live/Daniel.Sy/loic-go/pkg/loic"
"github.com/spf13/cobra"
)
var stopCmd = &cobra.Command{
Use: "stop",
Short: "Stoppt den aktuellen Lasttest",
Run: func(cmd *cobra.Command, args []string) {
loic.StopTest()
},
}
func init() {
rootCmd.AddCommand(stopCmd)
}