# Controller

## Concepts

* It is part of the Mandarine MVC module.
* It is responsible for the creation of endpoints & handling HTTP requests.
* It accepts the use of DI, however, this type of component is not injectable.

## Usage

**Syntax:**

```typescript
@Controller(baseRoute?: string)
```

* baseRoute
  * Optional.
  * Default: Null
  * Base route for all endpoints listed inside controller.

Example I

```typescript
import { Controller } from "https://deno.land/x/mandarinets/mod.ts";

@Controller()
export class MyController {
}
```

Example II

```typescript
import { Controller } from "https://deno.land/x/mandarinets/mod.ts";

@Controller('/api')
export class MyController {
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://mandarineframework.gitbook.io/mandarine-ts/mandarine-core/components/controller.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
