#!raku

use v6;

use Audio::Icecast;

sub MAIN(Str :$mount!, Str :$title!, Str :$host = 'localhost', Int :$port = 8000, Str :$user = 'admin', Str :$password = 'hackme') {
    my $ai = Audio::Icecast.new(:$host, :$port, :$user, :$password);
    $ai.update-metadata($mount, $title);


}
# vim: expandtab shiftwidth=4 ft=raku
