package internal import ( "context" "github.com/spf13/cobra" ) func PublishCmd() *cobra.Command { cmd := &cobra.Command{ Use: "publish", Short: "publish posts", RunE: wrapE(publishCmd), } return cmd } func publishCmd(ctx context.Context) error { return nil }