├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── cmd └── gomod-cap │ └── merge.go ├── config.go ├── displayer.go ├── export_ref_do_not_edit.json ├── go.mod ├── go.sum ├── messenger.go ├── plugin.go ├── storage.go └── webhook.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotify/plugin-api/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotify/plugin-api/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotify/plugin-api/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotify/plugin-api/HEAD/README.md -------------------------------------------------------------------------------- /cmd/gomod-cap/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotify/plugin-api/HEAD/cmd/gomod-cap/merge.go -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotify/plugin-api/HEAD/config.go -------------------------------------------------------------------------------- /displayer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotify/plugin-api/HEAD/displayer.go -------------------------------------------------------------------------------- /export_ref_do_not_edit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotify/plugin-api/HEAD/export_ref_do_not_edit.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotify/plugin-api/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotify/plugin-api/HEAD/go.sum -------------------------------------------------------------------------------- /messenger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotify/plugin-api/HEAD/messenger.go -------------------------------------------------------------------------------- /plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotify/plugin-api/HEAD/plugin.go -------------------------------------------------------------------------------- /storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotify/plugin-api/HEAD/storage.go -------------------------------------------------------------------------------- /webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gotify/plugin-api/HEAD/webhook.go --------------------------------------------------------------------------------