23 lines
349 B
Go
23 lines
349 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
)
|
|
|
|
func main() {
|
|
//TODO
|
|
/*
|
|
if err := Run(context.Background(), Config{}, nil, os.Stdout); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
*/
|
|
|
|
// Handle the command-line
|
|
Execute()
|
|
}
|
|
|
|
func Run(ctx context.Context, config Config, args []string, stdout io.Writer) error {
|
|
return fmt.Errorf("not implemented")
|
|
}
|