Move ./internal/oidcclient to ./pkg/oidcclient.

This will allow it to be imported by Go code outside of our repository, which was something we have planned for since this code was written.

Signed-off-by: Matt Moyer <moyerm@vmware.com>
This commit is contained in:
Matt Moyer
2020-11-17 12:46:54 -06:00
parent 428b9f2758
commit e0a9bef6ce
24 changed files with 25 additions and 24 deletions

View File

@@ -13,6 +13,7 @@ RUN go mod download
# Copy only the production source code to avoid cache misses when editing other files
COPY generated ./generated
COPY cmd ./cmd
COPY pkg ./pkg
COPY internal ./internal
COPY tools ./tools
COPY hack ./hack