download.php 279 B

12345678910111213141516
  1. <?php
  2. namespace WY\app\controller;
  3. use WY\app\libs\Controller;
  4. if (!defined('WY_ROOT')) {
  5. exit;
  6. }
  7. class download extends Controller
  8. {
  9. public function index()
  10. {
  11. $data = array('title' => '集成包下载');
  12. $this->put('download.php', $data);
  13. }
  14. }
  15. ?>