paste.chapril.org-privatebin/index.php

19 lines
517 B
PHP
Raw Permalink Normal View History

2020-01-14 21:42:06 +01:00
<?php
/**
* PrivateBin
*
* a zero-knowledge paste bin
*
* @link https://github.com/PrivateBin/PrivateBin
* @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
* @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
2020-04-12 16:26:05 +02:00
* @version 1.3.4
2020-01-14 21:42:06 +01:00
*/
// change this, if your php files and data is outside of your webservers document root
define('PATH', '');
define('PUBLIC_PATH', __DIR__);
require PATH . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';
new PrivateBin\Controller;