mirror of
https://github.com/Relintai/mourne_rcpp_fw.git
synced 2024-11-13 05:57:21 +01:00
23 lines
359 B
PHP
Executable File
23 lines
359 B
PHP
Executable File
<?php
|
|
class Cron extends CI_Controller
|
|
{
|
|
//no session stuff needed for this class, so it extends from CI_Controller.
|
|
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
function aiattack()
|
|
{
|
|
//check for useragent and stuff like that
|
|
|
|
$this->load->model('ai_model');
|
|
|
|
$a = $this->ai_model->attack();
|
|
|
|
echo $a;
|
|
}
|
|
|
|
}
|
|
//nowhitesp
|