Skip to content

Instantly share code, notes, and snippets.

@xinthink
Created November 15, 2017 01:23
Show Gist options
  • Save xinthink/f98b8c4636084b94ee55cb3beafab000 to your computer and use it in GitHub Desktop.
Save xinthink/f98b8c4636084b94ee55cb3beafab000 to your computer and use it in GitHub Desktop.
Dependency modeling
interface DependencyItem
data class DependencyNotation(val notation: String) : DependencyItem
class DependencyGroup : DependencyItem {
val dependencies: Map<String, DependencyItem>
}
@xinthink
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment