Last active
October 9, 2016 17:15
-
-
Save cvogt/5f8c6aaf7ec8c1209da9e324a38ef9d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
object DynamicConfig{ | |
def main(args: Array[String]): Unit = { | |
Application.run( | |
Config( | |
sys.props.get("db.host").get, | |
10000 | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment