Skip to content

Aryan9901/ChatterHub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

Directory structure:
└── aryan9901-chatterhub/
    └── server/
        ├── mvnw
        ├── mvnw.cmd
        ├── pom.xml
        ├── .gitattributes
        ├── .gitignore
        ├── src/
        │   ├── main/
        │   │   ├── java/
        │   │   │   └── com/
        │   │   │       └── aryan/
        │   │   │           └── app/
        │   │   │               ├── ChatterHubApplication.java
        │   │   │               ├── config/
        │   │   │               │   └── AppConfig.java
        │   │   │               ├── controller/
        │   │   │               │   ├── HomeController.java
        │   │   │               │   ├── PostController.java
        │   │   │               │   └── UserController.java
        │   │   │               ├── dtos/
        │   │   │               │   ├── PostDTO.java
        │   │   │               │   └── UserDTO.java
        │   │   │               ├── models/
        │   │   │               │   └── entity/
        │   │   │               │       ├── Post.java
        │   │   │               │       └── User.java
        │   │   │               ├── repository/
        │   │   │               │   ├── PostRepository.java
        │   │   │               │   └── UserRepository.java
        │   │   │               ├── response/
        │   │   │               │   └── ApiResponse.java
        │   │   │               ├── service/
        │   │   │               │   ├── PostService.java
        │   │   │               │   └── UserService.java
        │   │   │               ├── serviceImpl/
        │   │   │               │   ├── PostServiceImpl.java
        │   │   │               │   └── UserServiceImpl.java
        │   │   │               └── utils/
        │   │   │                   └── DTOConverter.java
        │   │   └── resources/
        │   │       └── application.properties
        │   └── test/
        │       └── java/
        │           └── com/
        │               └── aryan/
        │                   └── app/
        │                       └── ChatterHubApplicationTests.java
        └── .mvn/
            └── wrapper/
                └── maven-wrapper.properties