15 lines
328 B
Go
15 lines
328 B
Go
package clientcmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
clientconfig "github.com/deranjer/gvc/client/clientconfig"
|
|
)
|
|
|
|
//IgnoreFiles ignores file(s)/folder based on name/wildcard, etc
|
|
func IgnoreFiles(input string, inputType string, ignore clientconfig.Ignore) error {
|
|
fmt.Println("File/folder/wildcard to ignore", os.Args[2])
|
|
return nil
|
|
}
|