bottin/main.go

19 lines
338 B
Go
Raw Permalink Normal View History

2023-03-06 14:01:18 -05:00
package main
func main() {
/* TODO
if err := Run(context.Background(), Config{}, nil, os.Stdout); err != nil {
log.Fatal(err)
}
*/
// Handle the command-line via cobra and viper
execute()
2024-06-06 01:40:56 -04:00
}
/* TODO
2024-06-06 01:40:56 -04:00
func Run(ctx context.Context, config Config, args []string, stdout io.Writer) error {
return fmt.Errorf("not implemented")
2023-03-06 14:01:18 -05:00
}
*/