Skip to content

Commit

Permalink
fix: remove goswagger generated client
Browse files Browse the repository at this point in the history
  • Loading branch information
grantzvolsky authored and aeneasr committed Sep 7, 2022
1 parent 937e6ba commit e2c8809
Show file tree
Hide file tree
Showing 229 changed files with 32,440 additions and 20,079 deletions.
24 changes: 24 additions & 0 deletions internal/httpclient/.gitignore
@@ -0,0 +1,24 @@
# Compiled Object files, Static and Dynamic libs (Shared Objects)
*.o
*.a
*.so

# Folders
_obj
_test

# Architecture specific extensions/prefixes
*.[568vq]
[568vq].out

*.cgo1.go
*.cgo2.c
_cgo_defun.c
_cgo_gotypes.go
_cgo_export.*

_testmain.go

*.exe
*.test
*.prof
23 changes: 23 additions & 0 deletions internal/httpclient/.openapi-generator-ignore
@@ -0,0 +1,23 @@
# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
90 changes: 90 additions & 0 deletions internal/httpclient/.openapi-generator/FILES
@@ -0,0 +1,90 @@
.gitignore
.openapi-generator-ignore
.travis.yml
README.md
api/openapi.yaml
api_metadata.go
api_v1.go
client.go
configuration.go
docs/AcceptOAuth2ConsentRequest.md
docs/AcceptOAuth2ConsentRequestSession.md
docs/AcceptOAuth2LoginRequest.md
docs/AdminCreateJsonWebKeySetBody.md
docs/AdminTrustOAuth2JwtGrantIssuerBody.md
docs/GenericError.md
docs/GetVersion200Response.md
docs/HandledOAuth2ConsentRequest.md
docs/HandledOAuth2LoginRequest.md
docs/HandledOAuth2LogoutRequest.md
docs/HealthNotReadyStatus.md
docs/HealthStatus.md
docs/IntrospectedOAuth2Token.md
docs/IsReady200Response.md
docs/IsReady503Response.md
docs/JsonPatch.md
docs/JsonWebKey.md
docs/JsonWebKeySet.md
docs/MetadataApi.md
docs/OAuth2ApiError.md
docs/OAuth2Client.md
docs/OAuth2ConsentRequest.md
docs/OAuth2ConsentRequestOpenIDConnectContext.md
docs/OAuth2LoginRequest.md
docs/OAuth2LogoutRequest.md
docs/OAuth2TokenResponse.md
docs/OidcConfiguration.md
docs/OidcUserInfo.md
docs/Pagination.md
docs/PaginationHeaders.md
docs/PreviousOAuth2ConsentSession.md
docs/RefreshTokenHookRequest.md
docs/RefreshTokenHookResponse.md
docs/RejectOAuth2Request.md
docs/SuccessfulOAuth2RequestResponse.md
docs/TrustedOAuth2JwtGrantIssuer.md
docs/TrustedOAuth2JwtGrantJsonWebKey.md
docs/V1Api.md
docs/Version.md
git_push.sh
go.mod
go.sum
model_accept_o_auth2_consent_request.go
model_accept_o_auth2_consent_request_session.go
model_accept_o_auth2_login_request.go
model_admin_create_json_web_key_set_body.go
model_admin_trust_o_auth2_jwt_grant_issuer_body.go
model_generic_error.go
model_get_version_200_response.go
model_handled_o_auth2_consent_request.go
model_handled_o_auth2_login_request.go
model_handled_o_auth2_logout_request.go
model_health_not_ready_status.go
model_health_status.go
model_introspected_o_auth2_token.go
model_is_ready_200_response.go
model_is_ready_503_response.go
model_json_patch.go
model_json_web_key.go
model_json_web_key_set.go
model_o_auth2_api_error.go
model_o_auth2_client.go
model_o_auth2_consent_request.go
model_o_auth2_consent_request_open_id_connect_context.go
model_o_auth2_login_request.go
model_o_auth2_logout_request.go
model_o_auth2_token_response.go
model_oidc_configuration.go
model_oidc_user_info.go
model_pagination.go
model_pagination_headers.go
model_previous_o_auth2_consent_session.go
model_refresh_token_hook_request.go
model_refresh_token_hook_response.go
model_reject_o_auth2_request.go
model_successful_o_auth2_request_response.go
model_trusted_o_auth2_jwt_grant_issuer.go
model_trusted_o_auth2_jwt_grant_json_web_key.go
model_version.go
response.go
utils.go
1 change: 1 addition & 0 deletions internal/httpclient/.openapi-generator/VERSION
@@ -0,0 +1 @@
6.0.0
8 changes: 8 additions & 0 deletions internal/httpclient/.travis.yml
@@ -0,0 +1,8 @@
language: go

install:
- go get -d -v .

script:
- go build -v ./

0 comments on commit e2c8809

Please sign in to comment.