paste.chapril.org-privatebin/index.php

19 lines
517 B
PHP
Raw Permalink Normal View History

2012-04-21 21:59:45 +02:00
<?php
/**
2016-07-11 11:58:15 +02:00
* PrivateBin
*
* a zero-knowledge paste bin
*
2016-07-11 11:58:15 +02: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
2023-09-11 19:36:45 +02:00
* @version 1.6.0
*/
// 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 15:17:35 +02:00
new PrivateBin\Controller;