modules-pack
Version:
JavaScript Modules for Modern Frontend & Backend Projects
20 lines (16 loc) • 412 B
JavaScript
import auth from './auth'
import location from './location'
/**
* EXPORTS =====================================================================
* Modules' Exposing API - to enable consistent and maintainable app integration
* =============================================================================
*/
export {
auth,
location
}
/* Activated Modules */
export default [
// auth,
// location
]