1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
package main
import (
"context"
"errors"
"github.com/urfave/cli/v3"
)
var syncFeedsCmd = &cli.Command{
Name: "sync",
Usage: "Sync RSS feeds without opening the tui.",
Aliases: []string{"s"},
Action: syncFeeds,
}
func syncFeeds(ctx context.Context, c *cli.Command) error {
return errors.New("implement me")
}
|