mirror of
https://github.com/sigmasternchen/useful-api.org
synced 2025-03-15 07:58:55 +00:00
7 lines
132 B
PHP
7 lines
132 B
PHP
<?php
|
|
|
|
return (function() {
|
|
require(ROOT . "/credentials.php");
|
|
|
|
return new PDO($DB_DSN, $DB_USERNAME, $DB_PASSWORD);
|
|
})();
|