Skip to content

Instantly share code, notes, and snippets.

@AlexJWayne
Last active December 19, 2019 21:14
Show Gist options
  • Save AlexJWayne/674b85560638b7d05099231c61ef10f0 to your computer and use it in GitHub Desktop.
Save AlexJWayne/674b85560638b7d05099231c61ef10f0 to your computer and use it in GitHub Desktop.
export * from './types'
import { setHost, setApiKey } from './req'
import * as auth from './api/auth'
import * as blocks from './api/blocks'
import * as costCodes from './api/cost-codes'
import * as equipment from './api/equipment'
import * as reporting from './api/reporting'
import * as sites from './api/sites'
import * as stageables from './api/stageables'
import * as templates from './api/templates'
import * as workLogs from './api/work-logs'
import * as upload from './api/upload'
export default {
// Configuration and Authentication
setHost,
setApiKey,
auth,
// CRUD operations
blocks,
costCodes,
equipment,
sites,
templates,
workLogs,
// Actions
stageables,
upload,
// Reporting
reporting,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment