mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-09 02:15:41 +00:00
9 lines
118 B
Go
9 lines
118 B
Go
package validate
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func NoOp(_ *cobra.Command, _ []string) error {
|
|
return nil
|
|
}
|