├── .github └── workflows │ └── build.yml ├── README.md ├── demo ├── index.html └── main.go ├── filter ├── filter.go └── filter_suite_test.go ├── go.mod ├── go.sum └── img ├── limited.png └── manifest_manipulator.png /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-video/manifest-manipulator/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-video/manifest-manipulator/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-video/manifest-manipulator/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-video/manifest-manipulator/HEAD/demo/main.go -------------------------------------------------------------------------------- /filter/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-video/manifest-manipulator/HEAD/filter/filter.go -------------------------------------------------------------------------------- /filter/filter_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-video/manifest-manipulator/HEAD/filter/filter_suite_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-video/manifest-manipulator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-video/manifest-manipulator/HEAD/go.sum -------------------------------------------------------------------------------- /img/limited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-video/manifest-manipulator/HEAD/img/limited.png -------------------------------------------------------------------------------- /img/manifest_manipulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/learn-video/manifest-manipulator/HEAD/img/manifest_manipulator.png --------------------------------------------------------------------------------