├── AUTHORS.md ├── CONTRIBUTORS.md ├── LICENSE-MPL.txt ├── README.md ├── config.go ├── data ├── AGPL.txt ├── Apache.txt ├── CC0.txt ├── GPL.txt └── MPL.txt ├── gowizard ├── doc.go └── gowizard.go ├── template.go ├── util.go └── wizard.go /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tredoe/wizard/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tredoe/wizard/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE-MPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tredoe/wizard/HEAD/LICENSE-MPL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tredoe/wizard/HEAD/README.md -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tredoe/wizard/HEAD/config.go -------------------------------------------------------------------------------- /data/AGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tredoe/wizard/HEAD/data/AGPL.txt -------------------------------------------------------------------------------- /data/Apache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tredoe/wizard/HEAD/data/Apache.txt -------------------------------------------------------------------------------- /data/CC0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tredoe/wizard/HEAD/data/CC0.txt -------------------------------------------------------------------------------- /data/GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tredoe/wizard/HEAD/data/GPL.txt -------------------------------------------------------------------------------- /data/MPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tredoe/wizard/HEAD/data/MPL.txt -------------------------------------------------------------------------------- /gowizard/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tredoe/wizard/HEAD/gowizard/doc.go -------------------------------------------------------------------------------- /gowizard/gowizard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tredoe/wizard/HEAD/gowizard/gowizard.go -------------------------------------------------------------------------------- /template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tredoe/wizard/HEAD/template.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tredoe/wizard/HEAD/util.go -------------------------------------------------------------------------------- /wizard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tredoe/wizard/HEAD/wizard.go --------------------------------------------------------------------------------