Newer
Older
CamaraComercioWeb / src / app / core / core.module.ts
Fabian Vera on 28 Sep 2021 269 bytes [add] starting the project
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { HttpClientModule } from '@angular/common/http';



@NgModule({
  declarations: [],
  imports: [
    CommonModule,
    HttpClientModule
  ]
})
export class CoreModule { }