This commit is contained in:
amazuecos
2025-02-18 08:15:14 +00:00
parent eea415fb47
commit 4b1092df5f
9 changed files with 498 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?php
namespace App\Controllers\Wiki;
use App\Controllers\BaseController;
use CodeIgniter\HTTP\ResponseInterface;
class WikiController extends BaseController
{
public function index()
{
return view('themes/vuexy/wiki/pages/home');
}
}