Skip to content

Commit 16e82f1

Browse files
easyCZroboquat
authored andcommitted
leeway
1 parent a6de05f commit 16e82f1

File tree

6 files changed

+113
-0
lines changed

6 files changed

+113
-0
lines changed

components/iam-api/go/BUILD.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
packages:
2+
- name: lib
3+
type: go
4+
srcs:
5+
- "**/*.go"
6+
- "go.mod"
7+
- "go.sum"
8+
config:
9+
packaging: library
10+
dontTest: false

components/iam-api/go/go.mod

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module github.com/gitpod-io/gitpod/components/iam-api/go
2+
3+
go 1.19
4+
5+
require (
6+
google.golang.org/grpc v1.51.0
7+
google.golang.org/protobuf v1.28.1
8+
)
9+
10+
require (
11+
github.com/golang/protobuf v1.5.2 // indirect
12+
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
13+
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
14+
golang.org/x/text v0.4.0 // indirect
15+
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
16+
)

components/iam-api/go/go.sum

Lines changed: 78 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/iam-api/go/v1/oidc_client_config.pb.go

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/iam-api/go/v1/oidc_client_config_grpc.pb.go

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/iam/BUILD.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ packages:
77
- "go.sum"
88
deps:
99
- components/common-go:lib
10+
- components/iam-api/go:lib
1011
env:
1112
- CGO_ENABLED=0
1213
- GOOS=linux

0 commit comments

Comments
 (0)