tofuness/Toshocat

View on GitHub
src/syncers/Syncer.js

Summary

Maintainability
A
0 mins
Test Coverage
class Syncer {
  constructor(credentials, APIBase) {
    this.credentials = credentials;
    this.APIBase = APIBase;
    this.authenticated = false;
  }
  authenticate() {}
  getList() {}
  updateListItem() {}
}

export default Syncer;