├── .github └── workflows │ └── go.yml ├── Dockerfile ├── LICENSE ├── README.md ├── config ├── cdn.json ├── headers.json ├── javascript.json ├── parameters.json ├── takeover.json └── titles.json ├── go.mod ├── go.sum └── second-order.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhmdiaa/second-order/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhmdiaa/second-order/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhmdiaa/second-order/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhmdiaa/second-order/HEAD/README.md -------------------------------------------------------------------------------- /config/cdn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhmdiaa/second-order/HEAD/config/cdn.json -------------------------------------------------------------------------------- /config/headers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhmdiaa/second-order/HEAD/config/headers.json -------------------------------------------------------------------------------- /config/javascript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhmdiaa/second-order/HEAD/config/javascript.json -------------------------------------------------------------------------------- /config/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhmdiaa/second-order/HEAD/config/parameters.json -------------------------------------------------------------------------------- /config/takeover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhmdiaa/second-order/HEAD/config/takeover.json -------------------------------------------------------------------------------- /config/titles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhmdiaa/second-order/HEAD/config/titles.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhmdiaa/second-order/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhmdiaa/second-order/HEAD/go.sum -------------------------------------------------------------------------------- /second-order.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhmdiaa/second-order/HEAD/second-order.go --------------------------------------------------------------------------------