Feature: album remote deletion now Support picgo-plugin-s3

This commit is contained in:
萌萌哒赫萝
2023-02-17 13:27:25 +08:00
parent 681da4af47
commit 21e870deaf
5 changed files with 48 additions and 7 deletions

View File

@@ -5,6 +5,7 @@ import QiniuApi from './qiniu'
import ImgurApi from './imgur'
import GithubApi from './github'
import UpyunApi from './upyun'
import AwsS3Api from './awss3'
const apiMap: IStringKeyMap = {
smms: SmmsApi,
@@ -13,7 +14,8 @@ const apiMap: IStringKeyMap = {
qiniu: QiniuApi,
imgur: ImgurApi,
github: GithubApi,
upyun: UpyunApi
upyun: UpyunApi,
'aws-s3': AwsS3Api
}
export default class ALLApi {