all repos

smutok @ 58b9b4951b9e8bcf31bcfa7d9a57809ce40ff448

yet another tui rss reader (not abandoned, just paused development)

smutok/cmd_sync.go(view raw)

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")
}