Skip to content

Latest commit

 

History

History
35 lines (33 loc) · 459 Bytes

README.md

File metadata and controls

35 lines (33 loc) · 459 Bytes

dagdig

PFN 2019 インターンシップ課題を解くためのレポジトリ

How to use

server

cd server
go run main.go
curl "localhost:8080/api/jobs"
curl "localhost:8080/api/jobs?created=00:00:05"

worker

serverを起動後

cd worker
go run cmd/main.go

help

go run cmd/main.go --help

Test

server

cd server
go test ./...

worker

cd worker
go test ./...