11 lines
170 B
Go
11 lines
170 B
Go
|
package upload
|
||
|
|
||
|
// PkgInfo which will be uploaded.
|
||
|
type PkgInfo struct {
|
||
|
SaveDir string
|
||
|
FileName string
|
||
|
ClientType string
|
||
|
Channel string
|
||
|
ApkName string
|
||
|
}
|