Rust API for Gitea, automatically generated https://git.exmods.org/swagger.v1.json
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

24 lines
1.0KB

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