MusicBraniz request functioning.

It will need to be updated with an identifer to return anything useful.
This commit is contained in:
20xd6 2024-10-04 11:21:59 -04:00
parent 39c6a1bcc1
commit 9530bb9190

View File

@ -123,11 +123,16 @@ int main(int argc, char **argv) {
case 'p': case 'p':
print_conf(m_dir, mb_conf, ftv_api_key); print_conf(m_dir, mb_conf, ftv_api_key);
break; break;
case 's':
printf("This doesn't do anything yet but you searched for %s\n", optarg);
break;
default: default:
printf("So long and thanks for all the fish.\n"); printf("So long and thanks for all the fish.\n");
break; break;
} }
} }
get_mb_id();
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }