17 lines
341 B
Plaintext
17 lines
341 B
Plaintext
|
|
#!/usr/bin/env php
|
||
|
|
<?php
|
||
|
|
|
||
|
|
require_once __DIR__."/../vendor/autoload.php";
|
||
|
|
|
||
|
|
$opts = getopt("hc:",["help","config:"],$optind);
|
||
|
|
|
||
|
|
$configFile = isset($opts['c'])
|
||
|
|
? $opts['c']
|
||
|
|
: (isset($opts['config'])
|
||
|
|
? $opts['config']
|
||
|
|
: null);
|
||
|
|
|
||
|
|
$daemon = (new NoccyLabs\Ntfi\NtfiDaemon())
|
||
|
|
->setConfigFile($configFile)
|
||
|
|
->start();
|