some optimization for add files

This commit is contained in:
2020-05-28 21:29:50 -04:00
parent 8c59c4b067
commit 6ae1705ef0
3 changed files with 65 additions and 21 deletions

View File

@@ -3,10 +3,12 @@ package clientcmd
import (
"fmt"
"os"
clientconfig "github.com/deranjer/gvc/client/clientconfig"
)
//IgnoreFiles ignores file(s)/folder based on name/wildcard, etc
func IgnoreFiles() error {
func IgnoreFiles(input string, inputType string, ignore clientconfig.Ignore) error {
fmt.Println("File/folder/wildcard to ignore", os.Args[2])
return nil
}