Select the types of activity you want to include in your feed.
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}