使用支持S3协议的云存储作为文件服务器。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
584 B

package com.fanruan.fs.s3.repository.web;
import com.fr.web.struct.Component;
import com.fr.web.struct.browser.RequestClient;
import com.fr.web.struct.category.ScriptPath;
/**
* @author richie
* @version 10.0
* Created by richie on 2020/6/15
*/
public class S3FileServerComponent extends Component {
public static S3FileServerComponent KEY = new S3FileServerComponent();
private S3FileServerComponent() {
}
@Override
public ScriptPath script(RequestClient req) {
return ScriptPath.build("com/fanruan/fs/s3/repository/web/js/bundle.js");
}
}