Service
@tsed/di
Usage
typescript
import { Service } from "@tsed/di";
Overview
ts
function Service(): Function;
Description
The decorators @Service()
a new service can be injected in other service or controller on there constructor
. All services annotated with @Service()
are constructed one time.
@Service()
use thereflect-metadata
to collect and inject service on controllers or other services.