Browse Source

Move the source files from src/pkg/gearman to src/.

--HG--
rename : src/pkg/gearman/Makefile => src/Makefile
rename : src/pkg/gearman/client.go => src/client.go
rename : src/pkg/gearman/client/job.go => src/client/job.go
rename : src/pkg/gearman/client_test.go => src/client_test.go
rename : src/pkg/gearman/gearman.go => src/gearman.go
rename : src/pkg/gearman/worker.go => src/worker.go
rename : src/pkg/gearman/worker/job.go => src/worker/job.go
rename : src/pkg/gearman/worker/jobclient.go => src/worker/jobclient.go
rename : src/pkg/gearman/worker_test.go => src/worker_test.go
tags/0.0.1
mikespook 12 years ago
parent
commit
4bf2f63f4d
11 changed files with 2 additions and 6 deletions
  1. +1
    -1
      README
  2. +1
    -1
      README.zh
  3. +0
    -4
      src/Makefile
  4. +0
    -0
      src/client.go
  5. +0
    -0
      src/client/job.go
  6. +0
    -0
      src/client_test.go
  7. +0
    -0
      src/gearman.go
  8. +0
    -0
      src/worker.go
  9. +0
    -0
      src/worker/job.go
  10. +0
    -0
      src/worker/jobclient.go
  11. +0
    -0
      src/worker_test.go

+ 1
- 1
README View File

@@ -4,7 +4,7 @@ This module is Gearman API for golang.
It was implemented a native protocol for both worker and client API.

- INSTALL
$ cd ./src/pkg/gearman/
$ cd ./src/
$ make install

- SAMPLE OF USAGE


+ 1
- 1
README.zh View File

@@ -4,7 +4,7 @@ Go 语言的 Gearman API
它使用 Go 语言原生实现了 Gearman 的 Worker 端和 Client 端 API 协议。

- 安装
$ cd ./src/pkg/gearman/
$ cd ./src
$ make install

- 例程


src/pkg/gearman/Makefile → src/Makefile View File

@@ -17,9 +17,5 @@ CLEANFILES+=gearman_test

include $(GOROOT)/src/Make.pkg

%: install %.go
$(GC) $*.go
$(LD) -o $@ $*.$O

fmt:
gofmt -spaces=true -tabwidth=4 -w=true -tabindent=false ./

src/pkg/gearman/client.go → src/client.go View File


src/pkg/gearman/client/job.go → src/client/job.go View File


src/pkg/gearman/client_test.go → src/client_test.go View File


src/pkg/gearman/gearman.go → src/gearman.go View File


src/pkg/gearman/worker.go → src/worker.go View File


src/pkg/gearman/worker/job.go → src/worker/job.go View File


src/pkg/gearman/worker/jobclient.go → src/worker/jobclient.go View File


src/pkg/gearman/worker_test.go → src/worker_test.go View File


Loading…
Cancel
Save