rename extensions to services (leftover occurences)

This commit is contained in:
Willy Kloucek
2022-08-17 15:36:52 +02:00
parent 4c6f26a8db
commit 6154466bbc
77 changed files with 151 additions and 151 deletions

View File

@@ -5,5 +5,5 @@ import (
)
func SubcommandDescription(serviceName string) string {
return fmt.Sprintf("%s extension commands", serviceName)
return fmt.Sprintf("%s service commands", serviceName)
}

View File

@@ -17,7 +17,7 @@ import (
func VersionCommand(cfg *config.Config) *cli.Command {
return &cli.Command{
Name: "version",
Usage: "print the version of this binary and all running extension instances",
Usage: "print the version of this binary and all running service instances",
Category: "info",
Action: func(c *cli.Context) error {
fmt.Println("Version: " + version.GetString())