e0c1537e8e
--HG-- rename : README => README.md rename : src/gearman/client.go => gearman/client/client.go rename : src/gearman/client_test.go => gearman/client/client_test.go rename : src/gearman/clientjob.go => gearman/client/clientjob.go rename : src/gearman/gearman.go => gearman/gearman.go rename : src/gearman/jobagent.go => gearman/worker/jobagent.go rename : src/gearman/worker.go => gearman/worker/worker.go rename : src/gearman/worker_test.go => gearman/worker/worker_test.go rename : src/gearman/workerjob.go => gearman/worker/workerjob.go
16 lines
405 B
Go
16 lines
405 B
Go
// Copyright 2012 Xing Xing <mikespook@gmail.com> All rights reserved.
|
|
// Use of this source code is governed by a MIT
|
|
// license that can be found in the LICENSE file.
|
|
|
|
/*
|
|
This module is Gearman API for golang.
|
|
The protocol was implemented by native way.
|
|
*/
|
|
|
|
package gearman
|
|
|
|
import (
|
|
_ "bitbucket.org/mikespook/gearman-go/gearman/client"
|
|
_ "bitbucket.org/mikespook/gearman-go/gearman/worker"
|
|
)
|