cli + tui to publish to leaflet (wip) & manage tasks, notes & watch/read lists 馃崈
charm leaflet readability golang
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}