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