mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
13 lines
236 B
Go
13 lines
236 B
Go
package main
|
|
|
|
import (
|
|
"github.com/safing/portmaster/cmds/cmdbase"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func runPlatformSpecifics(cmd *cobra.Command, args []string) {
|
|
switch {
|
|
case printVersion:
|
|
runFlagCmd(cmdbase.Version, cmd, args)
|
|
}
|
|
}
|