├── .gitignore ├── LICENSE ├── README.md ├── doc.go ├── main.go └── sub ├── doc.go ├── example_test.go ├── more_examples_test.go ├── somefile.go └── subsub └── more.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/godocgo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/godocgo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/godocgo/HEAD/README.md -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/godocgo/HEAD/doc.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/godocgo/HEAD/main.go -------------------------------------------------------------------------------- /sub/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/godocgo/HEAD/sub/doc.go -------------------------------------------------------------------------------- /sub/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/godocgo/HEAD/sub/example_test.go -------------------------------------------------------------------------------- /sub/more_examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/godocgo/HEAD/sub/more_examples_test.go -------------------------------------------------------------------------------- /sub/somefile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/godocgo/HEAD/sub/somefile.go -------------------------------------------------------------------------------- /sub/subsub/more.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefinch/godocgo/HEAD/sub/subsub/more.go --------------------------------------------------------------------------------