Files
Olu Amey 261593fffb fix
2021-06-18 23:29:01 +00:00

13 lines
261 B
PHP

<?php
namespace App\Controllers;
class Privacy extends BaseController {
public function index() {
$data = array();
$this->renderExtPage('privacy', $data);
}
//--------------------------------------------------------------------
}