mirror of
https://github.com/moparisthebest/wallabag
synced 2024-12-18 05:32:23 -05:00
11 lines
174 B
PHP
Executable File
11 lines
174 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
set_time_limit(0);
|
|
|
|
require_once __DIR__.'/vendor/autoload.php';
|
|
require_once __DIR__.'/src/app.php';
|
|
|
|
$console = $app['console'];
|
|
|
|
echo "Hi there";
|