Tech-Student-Labs / cnd_cotton_factory_exercise

Class team project to develop a Spring Web microservice
0 stars 4 forks source link

Cotton Factory Developer Docs

Service Status

You can visit the Swagger docs for this API at https://cotton-factory-1220.herokuapp.com/swagger-ui.html

Documenting Your Code

Once annotated, that's all. Your features will appear in the Swagger docs.

import io.swagger.annotations.Api;

@RestController
@RequestMapping("api/v1/products/clothes")
@Api(tags = {"clothes"})
public class ClothesApiController {

    @GetMapping
    public List<String> getAllClothes() {
        return new ArrayList<>();
    }
}

Teams

Team Members Products
1 Hemasree Darisiguntla & Anurag Vishnoi & Xiaonan Wei & Peter Trotter Pants and Slacks
2 Parthiban Samykutti & Jose Durazo & Shashi Kumar R & Subhrajit Banerjee & Asiyat Kush Skirts and Dresses
3 Gokula Krishnan Thiruppathi Venkatesan & Srijan Khan & Amalesan Subramanian & Jennifer Dalton Shirts and Sweaters
4 Prasanth Sivakoti & Bharathi Mohan Bhagyanath & Uthiraraj Saminathan & RamaKrishnan Ramasamy & Ofeoritse Nanna Ties and Accessories
5 Naga Vijaya Patibandla & Bala Balaji Achanta & Nagarjuna Boddu & Vyom Rastogi Jackets and Shoes

Github Actions