class ListingProcessor(transform: RawListing => FullListing,
save: String => Async[Unit]) {
def process(listings: Seq[RawListing]): Async[Unit] = {
val fullListings = listings.map(transform)
// ...logic, etc
save(fullListings.toJson)
}
}
Created
May 28, 2018 06:00
-
-
Save wjlow/3689525d0899e322825dd3d8989619cc to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment