UNPKG

194 BJavaScriptView Raw
1const Associations = require('./crm_association')
2
3class CRM {
4 constructor(client) {
5 this.client = client
6 this.associations = new Associations(this.client)
7 }
8}
9
10module.exports = CRM