mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-07 04:40:05 -06:00
10 lines
149 B
Go
10 lines
149 B
Go
package helper
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func SubcommandDescription(serviceName string) string {
|
|
return fmt.Sprintf("%s service commands", serviceName)
|
|
}
|