add missing templates to allTemplates seq (#5657)

Add recently added templates to allTemplates seq so they are accessed from the command line
This commit is contained in:
Paweł Buchowski 2023-02-14 18:17:28 +01:00 committed by GitHub
parent 3e8467c204
commit f316ba0136
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,5 +45,13 @@ object Template {
override val name = "stargazers"
}
val allTemplates = Seq(Default, Orders, Restaurants, Stargazers)
val allTemplates = Seq(
Default,
Orders,
Restaurants,
Stargazers,
ColoradoCovid,
Kmeans,
NasdaqReturns
)
}