Skip to content

Commit

Permalink
remove push and pull methods from sync-api
Browse files Browse the repository at this point in the history
  • Loading branch information
Bnonni committed Sep 4, 2024
1 parent 582e4ea commit f49de99
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions packages/agent/src/sync-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,6 @@ export class AgentSyncApi implements SyncEngine {
this._syncEngine.stopSync();
}

public push(): Promise<void> {
return this._syncEngine.push();
}

public pull(): Promise<void> {
return this._syncEngine.pull();
}

public syncOnce(params: {syncDirection: string } = {syncDirection: 'push'}): Promise<void> {
return this._syncEngine.syncOnce(params);
}

Check warning on line 62 in packages/agent/src/sync-api.ts

View check run for this annotation

Codecov / codecov/patch

packages/agent/src/sync-api.ts#L61-L62

Added lines #L61 - L62 were not covered by tests
Expand Down

0 comments on commit f49de99

Please sign in to comment.