|
1
|
<?php |
|
2
|
|
|
3
|
defined('ABSPATH') || exit; |
|
4
|
|
|
5
|
use Kirki\Framework\Application; |
|
6
|
|
|
7
|
return Application::configure(KIRKI_PLUGIN_PATH) |
|
8
|
->use_routing(KIRKI_PLUGIN_PATH . '/routes/api.php') |
|
9
|
->use_prefix(KIRKI_PREFIX) |
|
10
|
->use_app_mode(KIRKI_ENV_MODE) |
|
11
|
->boot();
|