mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-13 23:49:05 -06:00
10 lines
151 B
Go
10 lines
151 B
Go
package helper
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func SubcommandDescription(serviceName string) string {
|
|
return fmt.Sprintf("%s extension commands", serviceName)
|
|
}
|