add command to save the default transformer configurations to local files

This commit is contained in:
Jingfang Liu
2018-09-28 15:30:58 -07:00
parent ffffbedf41
commit 94c3b1212e
7 changed files with 225 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ import (
type FileSystem interface {
Create(name string) (File, error)
Mkdir(name string) error
MkdirAll(name string) error
Open(name string) (File, error)
IsDir(name string) bool
Exists(name string) bool