cli + tui to publish to leaflet (wip) & manage tasks, notes & watch/read lists 馃崈
charm leaflet readability golang
29
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 13 lines 264 B view raw
1//go:build !prod 2 3package main 4 5import ( 6 "github.com/spf13/cobra" 7 "github.com/stormlightlabs/noteleaf/tools" 8) 9 10// registerTools adds development tools to the root command 11func registerTools(root *cobra.Command) { 12 root.AddCommand(tools.NewToolsCommand(root)) 13}