()
| 1244 | } |
| 1245 | |
| 1246 | func getSupportedQuickstartTypes() []string { |
| 1247 | var types []string |
| 1248 | for key := range auth0.QuickstartConfigs { |
| 1249 | types = append(types, key) |
| 1250 | } |
| 1251 | sort.Strings(types) |
| 1252 | return types |
| 1253 | } |
| 1254 | |
| 1255 | // frameworksForType returns the list of unique frameworks available for the given app type. |
| 1256 | func frameworksForType(qsType string) []string { |
no outgoing calls