Skip to content

Instantly share code, notes, and snippets.

@xerial
Last active July 15, 2018 23:41
Show Gist options
  • Save xerial/e67a1593f4cf912649920549be48558e to your computer and use it in GitHub Desktop.
Save xerial/e67a1593f4cf912649920549be48558e to your computer and use it in GitHub Desktop.
case class ServiceConfig(host:String, port:Int)
class Service(config:ServiceConfig) {
// ...
}
// Building a service instance
val config = new ServiceConfig("localhost", "8080")
val service = new Service(config)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment