Files
umbrix-libcore/cmd/cmd_service_stop.go

13 lines
203 B
Go
Raw Normal View History

2024-01-28 17:38:37 +03:30
package main
import (
"github.com/hiddify/libcore/service"
"github.com/spf13/cobra"
)
var commandServiceStop = &cobra.Command{
Use: "stop",
Short: "stop sign box",
Run: service.StopService,
}