Skip to content

Brand Service

The brand-service is a microservice responsible for managing brand-related data and business logic.

Responsibilities

  • CRUD operations for brands.
  • Handles brand-specific business logic.

Structure

The brand service is located in the apps/brand-service directory.

apps/brand-service
├── src
│   ├── controllers
│   │   ├── brandController.ts
│   │   └── index.ts
│   ├── repositories
│   │   └── brandRepository.ts
│   ├── routes
│   │   └── brand.ts
│   ├── schemas
│   │   ├── brandSchemas.ts
│   │   └── index.ts
│   ├── services
│   │   └── brandService.ts
│   ├── utils
│   │   └── auth.ts
│   ├── index.ts
│   └── server.ts
├── package.json
├── tsconfig.json
└── turbo.json