import * as types from 'app/types' import { api } from 'app/utils' export const getVimeoMetadata = url => { return api(() => {}, types.vimeo, 'vimeo', 'https://vimeo.com/api/oembed.json', { url }) .then(data => { return data }) }