Last active
April 27, 2019 14:57
-
-
Save JacquesSmuts/10a7bab01fe4e8292b307955beac2da6 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
| implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion" // In your gradle | |
| import kotlin.reflect.KFunction1 // You have to import this manually | |
| // The IDE generates this automatically | |
| fun doAwsApiCall( | |
| services: List<RetroService>, | |
| apiCall: KFunction1<AwsCodeCommitService, List<AwsRepo>> | |
| ): List<AwsRepo>? { | |
| TODO("Not implemented yet") | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment