mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
23 lines
399 B
PHP
23 lines
399 B
PHP
<?php
|
|
/**
|
|
* @class importerController
|
|
* @author zero (zero@nzeo.com)
|
|
* @brief importer 모듈의 Controller class
|
|
**/
|
|
|
|
class importerController extends importer {
|
|
|
|
/**
|
|
* @brief 초기화
|
|
**/
|
|
function init() {
|
|
}
|
|
|
|
/**
|
|
* @brief import
|
|
**/
|
|
function procImporterAdminImport() {
|
|
}
|
|
|
|
}
|
|
?>
|