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;