* delete old style client
[lab.git] / twitbot.pl
diff --git a/twitbot.pl b/twitbot.pl
deleted file mode 100755 (executable)
index b53c6dc..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use warnings;
-use YAML::Tiny;
-use Net::Twitter;
-
-my $config = (YAML::Tiny->read('config.yml'))->[0];
-my $twit = Net::Twitter->new(username => $config->{'username'}, password => $config->{'password'});
-
-$twit->update('Perl から Twiitter を更新するテストですよー');