You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
392 B
20 lines
392 B
import apis from '../../../lib/apis'
|
|
import {
|
|
wrapper,
|
|
wrapperUnimplemented
|
|
} from 'uni-helpers/api'
|
|
import {
|
|
promisify
|
|
} from 'uni-helpers/promise'
|
|
|
|
import api from 'uni-service-api'
|
|
|
|
export const uni = Object.create(null)
|
|
|
|
apis.forEach(name => {
|
|
if (api[name]) {
|
|
uni[name] = promisify(name, wrapper(name, api[name]))
|
|
} else {
|
|
uni[name] = wrapperUnimplemented(name)
|
|
}
|
|
})
|
|
|