Sign in
eclipse
/
openk-usermodules
/
org.eclipse.openk-usermodules.gridFailureInformation.frontend
/
d1168153adc862ced7a32d35a733973e4d3781b3
/
.
/
projects
/
sit-web-cache
/
src
/
main.ts
blob: 85872c914b9ce50e64b709c1b983cf5e18ebc8c5 [
file
] [
log
] [
blame
]
import
{
NestFactory
}
from
'@nestjs/core'
;
import
{
AppModule
}
from
'./app.module'
;
async
function
bootstrap
()
{
const
app
=
await
NestFactory
.
create
(
AppModule
,
{
logger
:
[
'error'
,
'warn'
],
});
await app
.
listen
(
3000
);
}
bootstrap
();