mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-07 21:00:30 -06:00
10 lines
152 B
Go
10 lines
152 B
Go
package command
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func subcommandDescription(serviceName string) string {
|
|
return fmt.Sprintf("%s extension commands", serviceName)
|
|
}
|