22 lines
279 B
Go
22 lines
279 B
Go
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
|
|
}
|