46 lines
946 B
Go
46 lines
946 B
Go
package debug
|
|
|
|
// Author: Weisen Pan
|
|
// Date: 2023-10-24
|
|
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// options stores the command line options.
|
|
var options = Options{}
|
|
|
|
// DebugCmd represents the 'debug' command for alpha features.
|
|
var DebugCmd = &cobra.Command{
|
|
Use: "debug",
|
|
Short: "Debug alpha feature",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
// Run the debug command with the specified options.
|
|
if err := run(&options); err != nil {
|
|
fmt.Printf("debug error: %s", err.Error())
|
|
os.Exit(1)
|
|
}
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
// Add command-line flags to the 'debug' command.
|
|
options.AddFlags(DebugCmd.Flags())
|
|
|
|
// Mark the 'filepath' flag as required.
|
|
if err := DebugCmd.MarkFlagRequired("filepath"); err != nil {
|
|
fmt.Printf("debug init error: %s", err.Error())
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
// run is the main function for the 'debug' command.
|
|
func run(opt *Options) error {
|
|
// Implement the debug logic here.
|
|
return nil
|
|
}
|