Files
tg_exporter/internal/cmd_publish.go
2024-09-04 09:40:29 +08:00

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
}