diff options
author | Fbenas <philbeansburton@gmail.com> | 2020-06-07 03:09:35 +0100 |
---|---|---|
committer | Fbenas <philbeansburton@gmail.com> | 2020-06-07 03:09:35 +0100 |
commit | 37594ccdf6581d669045e097114be37d221dba24 (patch) | |
tree | 95e78a51857e5e56be74ca31b7ef1a5a275b374a /scripts/irc.php | |
parent | 8cd1dfe6acea4b5cd87b72cb951197a91d6026c1 (diff) |
First pass at making an IRC compatiable warapper to taskwarrior
Diffstat (limited to 'scripts/irc.php')
-rw-r--r-- | scripts/irc.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/irc.php b/scripts/irc.php new file mode 100644 index 0000000..172ed29 --- /dev/null +++ b/scripts/irc.php @@ -0,0 +1,10 @@ +<?php + +require __DIR__.'/../vendor/autoload.php'; + +use FBeans\Blatask\IRC\Application; + +$app = (new Application) + ->fromStdin() + ->toConsole() + ->run(); |