mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-01-13 03:29:46 +08:00
11 lines
192 B
JavaScript
11 lines
192 B
JavaScript
/**
|
|
* Given a `SyncbackRequestObject` it creates the appropriate syncback task.
|
|
*
|
|
*/
|
|
class SyncbackTaskFactory {
|
|
static create(account, syncbackRequest) {
|
|
if (account) {
|
|
|
|
}
|
|
}
|
|
}
|