├── .gitignore ├── LICENSE ├── README.md ├── go-gitea-webhook.go ├── go.mod └── go.sum /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/go-gitea-webhook/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/go-gitea-webhook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/go-gitea-webhook/HEAD/README.md -------------------------------------------------------------------------------- /go-gitea-webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/go-gitea-webhook/HEAD/go-gitea-webhook.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/go-gitea-webhook/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrexodia/go-gitea-webhook/HEAD/go.sum --------------------------------------------------------------------------------