Skip to content

Commit 4a38351

Browse files
committed
Use openapi generator to replace the existing client
1 parent 05ca589 commit 4a38351

File tree

528 files changed

+167338
-1058
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

528 files changed

+167338
-1058
lines changed

Diff for: .gitignore

+18-19
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
1-
# If you prefer the allow list template instead of the deny list, see community template:
2-
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
3-
#
4-
# Binaries for programs and plugins
5-
*.exe
6-
*.exe~
7-
*.dll
1+
# Compiled Object files, Static and Dynamic libs (Shared Objects)
2+
*.o
3+
*.a
84
*.so
9-
*.dylib
105

11-
# Test binary, built with `go test -c`
12-
*.test
6+
# Folders
7+
_obj
8+
_test
139

14-
# Output of the go coverage tool, specifically when used with LiteIDE
15-
*.out
10+
# Architecture specific extensions/prefixes
11+
*.[568vq]
12+
[568vq].out
1613

17-
# Dependency directories (remove the comment below to include it)
18-
# vendor/
14+
*.cgo1.go
15+
*.cgo2.c
16+
_cgo_defun.c
17+
_cgo_gotypes.go
18+
_cgo_export.*
1919

20-
# Go workspace file
21-
go.work
22-
go.work.sum
20+
_testmain.go
2321

24-
# env file
25-
.env
22+
*.exe
23+
*.test
24+
*.prof

Diff for: .openapi-generator-ignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# OpenAPI Generator Ignore
2+
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

0 commit comments

Comments
 (0)