/**
 * This is the base module file. Copy the file into your site folder
 * under modules/*module-name* to extend this module and its components
 */

import { NgModule }                     from '@angular/core'
import { Include }                      from '@k-core/modules/footer/inc.footer'


// Components


// Views
import { B2B_FooterTemplate }          from './template/cmp.footer.b2b'

// Services


@NgModule({
    imports: [ 
        ...Include.imports
    ],
    exports: [
        ...Include.exports,
        
        B2B_FooterTemplate
    ],
    declarations: [
        ...Include.declarations,

        // Components
        
        // Views
        B2B_FooterTemplate
    ],
    providers: [
        ...Include.providers
    ]
})

export class FooterModule {}
