Skip to content

Instantly share code, notes, and snippets.

@yogacp
Last active June 28, 2018 11:32
Show Gist options
  • Save yogacp/9350aaed9956ca9635aef572c541cb05 to your computer and use it in GitHub Desktop.
Save yogacp/9350aaed9956ca9635aef572c541cb05 to your computer and use it in GitHub Desktop.
Final DSL function
/**
* Create function to store movies data
*/
fun movies(inputs: Movies.() -> Unit): Movies = Movies().apply(inputs)
/**
* Create function to store detail movies data
*/
fun Movies.detailMovies(inputs: DetailMovies.() -> Unit) {
detailMovies = DetailMovies().apply(inputs)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment