13 lines
253 B
Go
13 lines
253 B
Go
package clientcmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
//AddFiles adds files to the repo, inputType specifies file, folder, wildcard or all
|
|
func AddFiles(input string, inputType string) error {
|
|
fmt.Println("File/folder/wildcard to add", os.Args[2])
|
|
return nil
|
|
}
|