Batch 6a: application controllers base

This commit is contained in:
sas.fajri
2026-04-15 15:23:57 +07:00
parent 44b14b20a3
commit 3784d9ee28
1553 changed files with 1307399 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
class Api extends MY_Controller {
function __construct()
{
parent::__construct();
}
function create_patient() {
echo json_encode($this->sys_input);
}
function search_patient() {
echo json_encode($this->sys_input);
}
function service_request() {
echo json_encode($this->sys_input);
}
}
?>