1package aliyundrive 2 3import ( 4 "crypto/ecdsa" 5 6 "github.com/alist-org/alist/v3/pkg/generic_sync" 7) 8 9type State struct { 10 deviceID string 11 signature string 12 retry int 13 privateKey *ecdsa.PrivateKey 14} 15 16var global = generic_sync.MapOf[string, *State]{} 17 18