├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── command.go ├── config.go ├── environment.go ├── go.mod ├── go.sum ├── homemaker.go ├── img └── demo.gif ├── link.go ├── task.go ├── template.go └── util.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FooSoft/homemaker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FooSoft/homemaker/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FooSoft/homemaker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FooSoft/homemaker/HEAD/README.md -------------------------------------------------------------------------------- /command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FooSoft/homemaker/HEAD/command.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FooSoft/homemaker/HEAD/config.go -------------------------------------------------------------------------------- /environment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FooSoft/homemaker/HEAD/environment.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FooSoft/homemaker/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FooSoft/homemaker/HEAD/go.sum -------------------------------------------------------------------------------- /homemaker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FooSoft/homemaker/HEAD/homemaker.go -------------------------------------------------------------------------------- /img/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FooSoft/homemaker/HEAD/img/demo.gif -------------------------------------------------------------------------------- /link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FooSoft/homemaker/HEAD/link.go -------------------------------------------------------------------------------- /task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FooSoft/homemaker/HEAD/task.go -------------------------------------------------------------------------------- /template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FooSoft/homemaker/HEAD/template.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FooSoft/homemaker/HEAD/util.go --------------------------------------------------------------------------------