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.
 
 
 
 
 

23 lines
440 B

import service from ".";
const ClubApi = {
getClub(id){
return service.get(
'/clubpage/get-club',{
params: {
id: id
}
}
);
},
getShows(id){
return service.get(
'/clubpage/get-club-shows',{
params: {
id: id
}
}
)
}
}
export default ClubApi;