import axios from 'axios';
export const getBranch = async (id)=>{
return (await axios.get(`/projects/${id}/branches.json`)).data;
}
export const getTag = async (id)=>{
return (await axios.get(`/repositories/${id}/tags.json`)).data;