├── .gitignore ├── LICENSE ├── README.md ├── cmd └── modgen │ └── main.go ├── config.go ├── go.mod ├── go.sum ├── modgen.go └── template.go /.gitignore: -------------------------------------------------------------------------------- 1 | gen/ 2 | modgen.yaml 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essaim-dev/modgen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essaim-dev/modgen/HEAD/README.md -------------------------------------------------------------------------------- /cmd/modgen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essaim-dev/modgen/HEAD/cmd/modgen/main.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essaim-dev/modgen/HEAD/config.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essaim-dev/modgen/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essaim-dev/modgen/HEAD/go.sum -------------------------------------------------------------------------------- /modgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essaim-dev/modgen/HEAD/modgen.go -------------------------------------------------------------------------------- /template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/essaim-dev/modgen/HEAD/template.go --------------------------------------------------------------------------------