2023-03-06 14:01:18 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
func main() {
|
2024-06-06 18:07:30 -04:00
|
|
|
/* TODO
|
|
|
|
if err := Run(context.Background(), Config{}, nil, os.Stdout); err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2024-06-06 16:28:14 -04:00
|
|
|
*/
|
|
|
|
|
2024-06-06 18:07:30 -04:00
|
|
|
// Handle the command-line via cobra and viper
|
|
|
|
execute()
|
2024-06-06 01:40:56 -04:00
|
|
|
}
|
|
|
|
|
2024-06-06 18:07:30 -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
|
|
|
}
|
2024-06-06 18:07:30 -04:00
|
|
|
*/
|