14 lines
258 B
PHP
14 lines
258 B
PHP
<?php
|
|
|
|
namespace App\Controllers;
|
|
|
|
class Myfit extends BaseController {
|
|
|
|
public function index() {
|
|
$data = array();
|
|
$this->renderExtPage('myfit', $data);
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
}
|