bottin/main.go

24 lines
349 B
Go
Raw Normal View History

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() {
//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
}