Skip to content

Instantly share code, notes, and snippets.

@oliv3oyl3
Created December 12, 2022 07:55
Show Gist options
  • Save oliv3oyl3/b0fb4ee9abeff206191c88b0c893cafc to your computer and use it in GitHub Desktop.
Save oliv3oyl3/b0fb4ee9abeff206191c88b0c893cafc to your computer and use it in GitHub Desktop.
└── target
└── generated-sources
└── main
└── java
└── com
└── paloit
└── server
└── petstore
├── api 1. Generated APIs using delegate pattern
│ ├── ApiUtil.java
│ ├── PetApi.java
│ ├── PetApiController.java
│ ├── PetApiDelegate.java
│ ├── StoreApi.java
│ ├── StoreApiController.java
│ ├── StoreApiDelegate.java
│ ├── UserApi.java
│ ├── UserApiController.java
│ └── UserApiDelegate.java
└── model 2. Generated models
├── Address.java
├── Category.java
├── Customer.java
├── ModelApiResponse.java
├── Order.java
├── Pet.java
├── Tag.java
└── User.java
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment