Skip to content

Instantly share code, notes, and snippets.

@Debdut
Created May 19, 2022 11:22
Show Gist options
  • Save Debdut/1af953c034520d74e3ac75db4191ea2b to your computer and use it in GitHub Desktop.
Save Debdut/1af953c034520d74e3ac75db4191ea2b to your computer and use it in GitHub Desktop.
$ tree
.
├── HELP.md
├── lolcat.spring.iml
├── mvnw
├── mvnw.cmd
├── pom.xml
├── src
│   ├── main
│   │   ├── java
│   │   │   └── com
│   │   │       └── lolcat
│   │   │           └── spring
│   │   │               ├── Application.java
│   │   │               └── cat
│   │   │                   ├── Cat.java
│   │   │                   ├── CatConfig.java
│   │   │                   ├── CatController.java
│   │   │                   ├── CatRepository.java
│   │   │                   └── CatService.java
│   │   └── resources
│   │       ├── application.properties
│   │       ├── static
│   │       └── templates
│   └── test
│       └── java
│           └── com
│               └── lolcat
│                   └── spring
│                       └── ApplicationTests.java
└── target
    ├── classes
    │   ├── application.properties
    │   └── com
    │       └── lolcat
    │           └── spring
    │               ├── Application.class
    │               └── cat
    │                   ├── Cat.class
    │                   ├── CatConfig.class
    │                   ├── CatController.class
    │                   ├── CatRepository.class
    │                   └── CatService.class
    └── generated-sources
        └── annotations

23 directories, 20 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment