10 lines
245 B
PHP
10 lines
245 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
require_once dirname(__DIR__) . '/config.php';
|
|
require_once dirname(__DIR__, 2) . '/includes/accounting_helper.php';
|
|
|
|
if (function_exists('seedDefaultAccountingAccounts')) {
|
|
seedDefaultAccountingAccounts();
|
|
}
|