mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
20 lines
397 B
PHP
Executable File
20 lines
397 B
PHP
Executable File
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
/**
|
||
* 文件存储的接口定义
|
||
*
|
||
* @author kamisama.xia@gmail.com
|
||
* @version 0.1
|
||
*/
|
||
interface taskmgr_storage_interface {
|
||
|
||
public function get($url, $local_file);
|
||
|
||
public function save($source_file, $task_id, &$url);
|
||
|
||
public function delete($url);
|
||
} |