mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-11 23:47:32 +08:00
17 lines
261 B
Go
17 lines
261 B
Go
package pkg
|
|
|
|
import "time"
|
|
|
|
type Config struct {
|
|
TaskPath string
|
|
ProgressPath string
|
|
Concurrency int
|
|
Retry int
|
|
Timeout time.Duration
|
|
Api string
|
|
UserID string
|
|
Secret string
|
|
TempDir string
|
|
CacheSize int64
|
|
}
|