diff --git a/README.md b/README.md index f8834d1..a6f1a27 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,9 @@ This is a fork of https://github.com/gocelery/gocelery. Go Client/Server for Celery Distributed Task Queue -[![Build Status](https://github.com/gocelery/gocelery/workflows/Go/badge.svg)](https://github.com/gocelery/gocelery/workflows/Go/badge.svg) -[![Coverage Status](https://coveralls.io/repos/github/gocelery/gocelery/badge.svg?branch=master)](https://coveralls.io/github/gocelery/gocelery?branch=master) -[![Go Report Card](https://goreportcard.com/badge/github.com/gocelery/gocelery)](https://goreportcard.com/report/github.com/gocelery/gocelery) -[!["Open Issues"](https://img.shields.io/github/issues-raw/gocelery/gocelery.svg)](https://github.com/gocelery/gocelery/issues) -[!["Latest Release"](https://img.shields.io/github/release/gocelery/gocelery.svg)](https://github.com/gocelery/gocelery/releases/latest) -[![GoDoc](https://godoc.org/github.com/gocelery/gocelery?status.svg)](https://godoc.org/github.com/gocelery/gocelery) -[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/gocelery/gocelery/blob/master/LICENSE) -[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fgocelery%2Fgocelery.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fgocelery%2Fgocelery?ref=badge_shield) +[![Coverage Status](https://coveralls.io/repos/github/messente/gocelery/badge.svg?branch=master)](https://coveralls.io/github/messente/gocelery?branch=master) +[!["Latest Release"](https://img.shields.io/github/release/messente/gocelery.svg)](https://github.com/messente/gocelery/releases/latest) +[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/messente/gocelery/blob/master/LICENSE) ## Why? @@ -20,7 +15,7 @@ You can also use this library as pure go distributed task queue. ## Go Celery Worker in Action -![demo](https://raw.githubusercontent.com/gocelery/gocelery/master/demo.gif) +![demo](https://raw.githubusercontent.com/messente/gocelery/master/demo.gif) ## Supported Brokers/Backends diff --git a/example/goclient/main.go b/example/goclient/main.go index 7f07a64..e4a861a 100644 --- a/example/goclient/main.go +++ b/example/goclient/main.go @@ -10,8 +10,8 @@ import ( "reflect" "time" - "github.com/gocelery/gocelery" "github.com/gomodule/redigo/redis" + "github.com/messente/gocelery" ) // Run Celery Worker First! diff --git a/example/goworker/main.go b/example/goworker/main.go index 3c20f85..cb8477f 100644 --- a/example/goworker/main.go +++ b/example/goworker/main.go @@ -8,8 +8,8 @@ import ( "fmt" "time" - "github.com/gocelery/gocelery" "github.com/gomodule/redigo/redis" + "github.com/messente/gocelery" ) // exampleAddTask is integer addition task diff --git a/go.mod b/go.mod index 425cd37..bf1b9c9 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/gocelery/gocelery +module github.com/messente/gocelery go 1.13