2024-10-31 17:04:25 +00:00
|
|
|
//go:build windows
|
|
|
|
|
2024-08-29 21:08:02 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2024-08-31 16:01:58 +00:00
|
|
|
"github.com/Baipyrus/ProxySwitcher/proxy"
|
2024-08-29 21:08:02 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
// setCmd represents the set command
|
|
|
|
var setCmd = &cobra.Command{
|
|
|
|
Use: "set",
|
|
|
|
Short: "Enable the current internet proxy settings",
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
2024-09-24 12:40:42 +00:00
|
|
|
proxy.Set(cfgPath)
|
2024-08-29 21:08:02 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
rootCmd.AddCommand(setCmd)
|
|
|
|
|
|
|
|
// Here you will define your flags and configuration settings.
|
|
|
|
|
|
|
|
// Cobra supports Persistent Flags which will work for this command
|
|
|
|
// and all subcommands, e.g.:
|
|
|
|
// setCmd.PersistentFlags().String("foo", "", "A help for foo")
|
|
|
|
|
|
|
|
// Cobra supports local flags which will only run when this command
|
|
|
|
// is called directly, e.g.:
|
|
|
|
// setCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
|
|
|
|
}
|