mirror of
https://github.com/sctn4elk/CustomerRewardsRESTAPI.git
synced 2025-01-09 23:54:29 -06:00
15 lines
552 B
PHP
15 lines
552 B
PHP
<?php
|
|
|
|
/*
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Scripting/EmptyPHP.php to edit this template
|
|
*/
|
|
|
|
define("PROJECT_ROOT_PATH", __DIR__ . "/../");
|
|
// include main configuration file
|
|
require_once PROJECT_ROOT_PATH . "/include/config.php";
|
|
// include the base controller file
|
|
require_once PROJECT_ROOT_PATH . "/Controller/Api/BaseController.php";
|
|
// include the use model file
|
|
require_once PROJECT_ROOT_PATH . "/Model/CustomerModel.php";
|