/**
 * 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


// Services


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

        // Views

        ...Include.declarations
    ],
    providers: [
        ...Include.providers
    ]
})

export class FooterModule {}
