/**
 * @since Tue Aug 07 2018
 * @author Zia ur-Rehman - Klean
 */

/**
 * 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 { FooterKidTemplate }          from './template/cmp.footer.kid'

// Services


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

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

export class FooterModule {}
