Skip to content

Commit f4fa25e

Browse files
committed
chore: unable to import now function
now function is exposed from utils which is exported using exports field
1 parent 86bf712 commit f4fa25e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/buz/src/main.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import { Logger } from "@nestjs/common";
77
import { NestFactory } from "@nestjs/core";
88
import { AppModule } from "./app/app.module";
9+
import { now } from "@lazy-orange/date-time/utils";
910

1011
async function bootstrap() {
1112
const app = await NestFactory.create(AppModule);
@@ -14,7 +15,7 @@ async function bootstrap() {
1415
const port = process.env.PORT || 3000;
1516
await app.listen(port);
1617
Logger.log(
17-
`🚀 Application is running on: http://localhost:${port}/${globalPrefix}`
18+
`🚀 Application is running on: http://localhost:${port}/${globalPrefix} at ${now()}`
1819
);
1920
}
2021

0 commit comments

Comments
 (0)