chore: remove service from example because no need it

This commit is contained in:
Supan Adit Pratama 2024-11-10 13:25:06 +07:00
parent 117de26880
commit d5cd468506

View File

@ -62,7 +62,7 @@ DATABASE_URL = 'mysql://johndoe:randompassword@localhost:3306/mydb';
}), }),
], ],
controllers: [AppController], controllers: [AppController],
providers: [AppService], providers: [],
}) })
export class AppModule {} export class AppModule {}
@ -98,7 +98,7 @@ export class UserEntity {
}), }),
], ],
controllers: [AppController], controllers: [AppController],
providers: [AppService], providers: [],
}) })
export class AppModule {} export class AppModule {}