mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-22 16:41:30 +00:00
44 lines
695 B
Go
44 lines
695 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/sagernet/sing-box"
|
|
"github.com/sagernet/sing-box/log"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var commandCheck = &cobra.Command{
|
|
Use: "check",
|
|
Short: "Check configuration",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
err := check()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
},
|
|
Args: cobra.NoArgs,
|
|
}
|
|
|
|
func init() {
|
|
mainCommand.AddCommand(commandCheck)
|
|
}
|
|
|
|
func check() error {
|
|
options, err := readConfigAndMerge()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
instance, err := box.New(box.Options{
|
|
Context: ctx,
|
|
Options: options,
|
|
})
|
|
if err == nil {
|
|
instance.Close()
|
|
}
|
|
cancel()
|
|
return err
|
|
}
|