package entity const SecretsCollectionName = "threads_account_secrets" type Secrets struct { AccountID string `bson:"_id"` BrowserStorageState string `bson:"browser_storage_state,omitempty"` APIAccessToken string `bson:"api_access_token,omitempty"` APITokenExpiresAt int64 `bson:"api_token_expires_at,omitempty"` UpdateAt int64 `bson:"update_at"` }