@nestjs/core
Version:
Nest - modern, fast, powerful node.js web framework (@core)
15 lines (14 loc) • 391 B
JavaScript
import { HttpAdapterHost } from '../helpers/http-adapter-host.js';
export class InternalProvidersStorage {
_httpAdapterHost = new HttpAdapterHost();
_httpAdapter;
get httpAdapterHost() {
return this._httpAdapterHost;
}
get httpAdapter() {
return this._httpAdapter;
}
set httpAdapter(httpAdapter) {
this._httpAdapter = httpAdapter;
}
}