mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
11 lines
253 B
PHP
11 lines
253 B
PHP
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
class QSO extends CI_Controller {
|
|
|
|
public function index()
|
|
{
|
|
$this->load->view('layout/header');
|
|
$this->load->view('qso/index');
|
|
$this->load->view('layout/footer');
|
|
}
|
|
} |