UNPKG

@authrocket/authrocket-node

Version:

AuthRocket library for Node

14 lines (9 loc) 200 B
const Resource = require('./resource') class Org extends Resource { constructor(client) { super(client) this.path = 'orgs' this.rootElement = 'org' } } module.exports = Org