mirror of
https://github.com/rsteube/carapace-bin.git
synced 2025-05-05 15:32:53 +00:00
19 lines
340 B
Go
19 lines
340 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/carapace-sh/carapace"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var mdns_servicesCmd = &cobra.Command{
|
|
Use: "services",
|
|
Short: "list all discovered services",
|
|
Run: func(cmd *cobra.Command, args []string) {},
|
|
}
|
|
|
|
func init() {
|
|
carapace.Gen(mdns_servicesCmd).Standalone()
|
|
|
|
mdnsCmd.AddCommand(mdns_servicesCmd)
|
|
}
|