You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gearman.go 439 B

12345678910111213141516
  1. // Copyright 2011 Xing Xing <mikespook@gmail.com> All rights reserved.
  2. // Use of this source code is governed by a MIT
  3. // license that can be found in the LICENSE file.
  4. /*
  5. This module is Gearman API for golang.
  6. The protocol was implemented by native way.
  7. */
  8. package gearman
  9. import (
  10. _ "bitbucket.org/mikespook/gearman-go/common"
  11. _ "bitbucket.org/mikespook/gearman-go/client"
  12. _ "bitbucket.org/mikespook/gearman-go/worker"
  13. )