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