Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alist-org
GitHub Repository: alist-org/alist
Path: blob/main/drivers/aliyundrive/global.go
1986 views
1
package aliyundrive
2
3
import (
4
"crypto/ecdsa"
5
6
"github.com/alist-org/alist/v3/pkg/generic_sync"
7
)
8
9
type State struct {
10
deviceID string
11
signature string
12
retry int
13
privateKey *ecdsa.PrivateKey
14
}
15
16
var global = generic_sync.MapOf[string, *State]{}
17
18