kafka4s
kafka4s copied to clipboard
Clean up config utils
The utils we provide for configs need to be improved in a few ways:
- Need to support all configs. Defining all of them is tedious, can we automate this somehow?
- Initially each config had a case class, and a companion object with an implicit. A simpler idiom is just the object with an apply constructor, or pre-defined values in some cases. Refactor to simpler approach.