Skip to content

Commit 690ab6c

Browse files
committed
docs: add example code
1 parent e90bbad commit 690ab6c

File tree

3 files changed

+697
-0
lines changed

3 files changed

+697
-0
lines changed

example/go.mod

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
module github.com/go-oss/scheduler/example
2+
3+
go 1.17
4+
5+
replace github.com/go-oss/scheduler => ../
6+
7+
require (
8+
cloud.google.com/go/cloudtasks v1.0.0
9+
github.com/go-oss/scheduler v0.0.0-00010101000000-000000000000
10+
)
11+
12+
require (
13+
cloud.google.com/go v0.97.0 // indirect
14+
github.com/BurntSushi/toml v0.3.1 // indirect
15+
github.com/census-instrumentation/opencensus-proto v0.2.1 // indirect
16+
github.com/cespare/xxhash v1.1.0 // indirect
17+
github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403 // indirect
18+
github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed // indirect
19+
github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0 // indirect
20+
github.com/envoyproxy/protoc-gen-validate v0.1.0 // indirect
21+
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
22+
github.com/golang/protobuf v1.5.2 // indirect
23+
github.com/google/go-cmp v0.5.6 // indirect
24+
github.com/googleapis/gax-go v1.0.3 // indirect
25+
github.com/googleapis/gax-go/v2 v2.1.1 // indirect
26+
go.opencensus.io v0.23.0 // indirect
27+
golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6 // indirect
28+
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
29+
golang.org/x/mod v0.4.2 // indirect
30+
golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420 // indirect
31+
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
32+
golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359 // indirect
33+
golang.org/x/text v0.3.6 // indirect
34+
golang.org/x/tools v0.1.5 // indirect
35+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
36+
google.golang.org/api v0.60.0 // indirect
37+
google.golang.org/appengine v1.6.7 // indirect
38+
google.golang.org/genproto v0.0.0-20211021150943-2b146023228c // indirect
39+
google.golang.org/grpc v1.40.0 // indirect
40+
google.golang.org/protobuf v1.27.1 // indirect
41+
honnef.co/go/tools v0.0.1-2020.1.4 // indirect
42+
)

0 commit comments

Comments
 (0)