選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. )