a843c23f20
#KT-10340 Fixed
13 lines
229 B
Plaintext
Vendored
13 lines
229 B
Plaintext
Vendored
package templates
|
|
|
|
enum class Family {
|
|
Collections
|
|
}
|
|
|
|
fun buildTemplates(): List<Family> {
|
|
val templates = arrayListOf<Family>()
|
|
templates.add(Family.Collections)
|
|
return templates
|
|
}
|
|
|
|
// ELEMENT: Family.Collections |