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