mirror of
https://github.com/PGYER/codefever.git
synced 2026-05-07 22:18:21 +08:00
11 lines
174 B
PHP
Executable File
11 lines
174 B
PHP
Executable File
<?php
|
|
// set env
|
|
define('ENVIRONMENT', 'testing');
|
|
|
|
ob_start(null, 10240);
|
|
require_once './www/index.php';
|
|
ob_clean();
|
|
|
|
$CI = &get_instance();
|
|
$CI->load->library('service');
|