modules-pack
Version:
JavaScript Modules for Modern Frontend & Backend Projects
16 lines (11 loc) • 379 B
JavaScript
import { GRAPHQL } from './constants'
/**
* EXPORTS =====================================================================
* Modules' Exposing API - to enable consistent and maintainable app integration
* =============================================================================
*/
export * from './request'
const graphql = {
NAME: GRAPHQL,
}
export default graphql