mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-09 08:02:26 +08:00
20 lines
536 B
Go
20 lines
536 B
Go
/*
|
||
|
||
包 github.com/qiniu/api.v7 是七牛 Go 语言 SDK v7.x 版本。
|
||
|
||
主要提供了存储的数据上传,下载,管理以及CDN相关的功能。要求Go语言版本>=1.7.0。
|
||
|
||
Go SDK 中主要包含几个包:
|
||
|
||
auth 包提供鉴权相关方法,conf 包提供配置相关方法,cdn包提供CDN相关的功能,storage包提供存储相关的功能。
|
||
|
||
*/
|
||
package api
|
||
|
||
import (
|
||
_ "github.com/qiniu/api.v7/auth/qbox"
|
||
_ "github.com/qiniu/api.v7/cdn"
|
||
_ "github.com/qiniu/api.v7/conf"
|
||
_ "github.com/qiniu/api.v7/storage"
|
||
)
|