modules-pack
Version:
JavaScript Modules for Modern Frontend & Backend Projects
18 lines (14 loc) • 463 B
JavaScript
import { assertFrontend } from 'utils-pack'
import { USER_CLIENT } from '../constants'
import saga from './sagas'
/**
* EXPORTS FOR FRONTEND ONLY ===================================================
* Modules' Exposing API - to enable consistent and maintainable app integration
* =============================================================================
*/
assertFrontend()
const userClient = {
NAME: USER_CLIENT,
saga,
}
export default userClient