18 lines
237 B
PHP
Executable File
18 lines
237 B
PHP
Executable File
<?php
|
|
namespace app\usmobile\controller;
|
|
|
|
|
|
class TopsNas extends BaseController
|
|
{
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
}
|
|
|
|
public function download()
|
|
{
|
|
return $this->fetch();
|
|
}
|
|
|
|
}
|