├── .github └── FUNDING.yml ├── .travis.yml ├── LICENSE ├── README.md ├── astrewrite.go └── astrewrite_example_test.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: ["fatih"] 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatih/astrewrite/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatih/astrewrite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatih/astrewrite/HEAD/README.md -------------------------------------------------------------------------------- /astrewrite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatih/astrewrite/HEAD/astrewrite.go -------------------------------------------------------------------------------- /astrewrite_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatih/astrewrite/HEAD/astrewrite_example_test.go --------------------------------------------------------------------------------