Created
November 4, 2016 10:04
-
-
Save ScalaWilliam/3357d3cabb8d6b27f76eb225ca7f2622 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
| class StaticFeature extends Feature { | |
| def execute(inputXml: Elem): Future[Result] = { | |
| Future.successful(StaticFeature.staticResult) | |
| } | |
| } | |
| object StaticFeature { | |
| val staticResult: Result = ??? | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment