PrivateBin/index.php

19 lines
517 B
PHP
Raw Normal View History

2012-04-22 03:59:45 +08:00
<?php
/**
2016-07-11 17:58:15 +08:00
* PrivateBin
*
* a zero-knowledge paste bin
*
2016-07-11 17:58:15 +08:00
* @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
2022-12-24 12:52:07 +08:00
* @version 1.5.1
*/
// 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';
2018-07-29 21:17:35 +08:00
new PrivateBin\Controller;