def get()

in api/src/main/scala/com/gu/core/store/store.scala [27:35]


  def get(table: String, id: String): Either[Error, Avatar]
  def query(table: String, index: String, userId: String, since: Option[DateTime], until: Option[DateTime]): Either[Error, QueryResponse]
  def query(table: String, index: String, status: Status, since: Option[DateTime], until: Option[DateTime], order: Option[OrderBy]): Either[Error, QueryResponse]
  def put(table: String, avatar: Avatar): Either[Error, Avatar]
  def update(table: String, id: String, status: Status, isActive: Boolean = false): Either[Error, Avatar]
  def delete(table: String, ids: List[String]): Either[Error, DeleteResponse]
}

trait FileStore {