├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── cmd └── comicgen │ └── main.go ├── comicgen.go └── go.mod /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iopred/comicgen/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iopred/comicgen/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iopred/comicgen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iopred/comicgen/HEAD/README.md -------------------------------------------------------------------------------- /cmd/comicgen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iopred/comicgen/HEAD/cmd/comicgen/main.go -------------------------------------------------------------------------------- /comicgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iopred/comicgen/HEAD/comicgen.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iopred/comicgen/HEAD/go.mod --------------------------------------------------------------------------------