chore: initial commit

This commit is contained in:
Oussama Douhou
2025-10-29 11:09:43 +01:00
commit 7ec667258a
235 changed files with 62997 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?php
require __DIR__ . '/REST_Controller.php';
defined('BASEPATH') or exit('No direct script access allowed');
class Swagger extends CI_Controller
{
public function __construct()
{
parent::__construct();
$this->load->library('app_modules');
}
public function index() {
$data['title'] = 'Api Guide';
$this->load->view('playground', $data);
}
public function json()
{
return REST_Controller::get_swagger_file();
}
}