2012-05-22 20:05:39 +08:00
|
|
|
// Copyright 2011 Xing Xing <mikespook@gmail.com> All rights reserved.
|
2012-03-26 13:32:59 +08:00
|
|
|
// Use of this source code is governed by a MIT
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
/*
|
2013-12-25 17:01:42 +08:00
|
|
|
This module is a Gearman API for the Go Programming Language.
|
|
|
|
The protocols were written in pure Go. It contains two sub-packages:
|
|
|
|
|
|
|
|
The client package is used for sending jobs to the Gearman job server,
|
|
|
|
and getting responses from the server.
|
|
|
|
|
|
|
|
import "github.com/mikespook/gearman-go/client"
|
2012-03-26 13:32:59 +08:00
|
|
|
|
2013-12-25 18:11:01 +08:00
|
|
|
The worker package will help developers to develop Gearman's worker
|
|
|
|
in an easy way.
|
2013-12-25 17:01:42 +08:00
|
|
|
|
|
|
|
import "github.com/mikespook/gearman-go/worker"
|
|
|
|
*/
|
2012-03-26 13:32:59 +08:00
|
|
|
package gearman
|
|
|
|
|
2012-05-24 16:56:36 +08:00
|
|
|
import (
|
2013-08-30 12:36:57 +08:00
|
|
|
_ "github.com/mikespook/gearman-go/client"
|
|
|
|
_ "github.com/mikespook/gearman-go/worker"
|
2012-03-26 13:32:59 +08:00
|
|
|
)
|