@@ -318,13 +318,27 @@ func runInitCommand(cmd *cobra.Command, args []string) error {
318
318
genErr = integrations .GenerateGoIntegration (absPath , project )
319
319
case integrations .FrameworkNode :
320
320
genErr = integrations .GenerateNodeIntegration (absPath , project )
321
- // TODO: Add other framework integrations
322
- case integrations .FrameworkVue , integrations .FrameworkAngular , integrations .FrameworkSvelte ,
323
- integrations .FrameworkNuxt , integrations .FrameworkVanilla , integrations .FrameworkReactNative ,
324
- integrations .FrameworkFlutter , integrations .FrameworkRuby , integrations .FrameworkJava ,
325
- integrations .FrameworkCSharp , integrations .FrameworkUnknown :
321
+ case integrations .FrameworkVue :
326
322
fmt .Printf (" ℹ️ Code generation for %s coming soon!\n " , project .GetFrameworkName ())
327
- default :
323
+ case integrations .FrameworkAngular :
324
+ fmt .Printf (" ℹ️ Code generation for %s coming soon!\n " , project .GetFrameworkName ())
325
+ case integrations .FrameworkSvelte :
326
+ fmt .Printf (" ℹ️ Code generation for %s coming soon!\n " , project .GetFrameworkName ())
327
+ case integrations .FrameworkNuxt :
328
+ fmt .Printf (" ℹ️ Code generation for %s coming soon!\n " , project .GetFrameworkName ())
329
+ case integrations .FrameworkVanilla :
330
+ fmt .Printf (" ℹ️ Code generation for %s coming soon!\n " , project .GetFrameworkName ())
331
+ case integrations .FrameworkReactNative :
332
+ fmt .Printf (" ℹ️ Code generation for %s coming soon!\n " , project .GetFrameworkName ())
333
+ case integrations .FrameworkFlutter :
334
+ fmt .Printf (" ℹ️ Code generation for %s coming soon!\n " , project .GetFrameworkName ())
335
+ case integrations .FrameworkRuby :
336
+ fmt .Printf (" ℹ️ Code generation for %s coming soon!\n " , project .GetFrameworkName ())
337
+ case integrations .FrameworkJava :
338
+ fmt .Printf (" ℹ️ Code generation for %s coming soon!\n " , project .GetFrameworkName ())
339
+ case integrations .FrameworkCSharp :
340
+ fmt .Printf (" ℹ️ Code generation for %s coming soon!\n " , project .GetFrameworkName ())
341
+ case integrations .FrameworkUnknown :
328
342
fmt .Printf (" ℹ️ Code generation for %s coming soon!\n " , project .GetFrameworkName ())
329
343
}
330
344
@@ -387,6 +401,33 @@ func runInitCommand(cmd *cobra.Command, args []string) error {
387
401
case integrations .FrameworkPython :
388
402
fmt .Println (" - Configure webhook handlers for call events" )
389
403
fmt .Println (" - Set up assistant and call management endpoints" )
404
+ case integrations .FrameworkVue :
405
+ fmt .Println (" - Follow the Vue.js integration guide in documentation" )
406
+ case integrations .FrameworkAngular :
407
+ fmt .Println (" - Follow the Angular integration guide in documentation" )
408
+ case integrations .FrameworkSvelte :
409
+ fmt .Println (" - Follow the Svelte integration guide in documentation" )
410
+ case integrations .FrameworkNuxt :
411
+ fmt .Println (" - Follow the Nuxt.js integration guide in documentation" )
412
+ case integrations .FrameworkRemix :
413
+ fmt .Println (" - Follow the Remix integration guide in documentation" )
414
+ case integrations .FrameworkVanilla :
415
+ fmt .Println (" - Follow the vanilla JavaScript integration guide in documentation" )
416
+ case integrations .FrameworkReactNative :
417
+ fmt .Println (" - Follow the React Native integration guide in documentation" )
418
+ case integrations .FrameworkFlutter :
419
+ fmt .Println (" - Follow the Flutter integration guide in documentation" )
420
+ case integrations .FrameworkGolang :
421
+ fmt .Println (" - Set up webhook endpoints for call events" )
422
+ fmt .Println (" - Create assistant configuration and call management routes" )
423
+ case integrations .FrameworkRuby :
424
+ fmt .Println (" - Follow the Ruby integration guide in documentation" )
425
+ case integrations .FrameworkJava :
426
+ fmt .Println (" - Follow the Java integration guide in documentation" )
427
+ case integrations .FrameworkCSharp :
428
+ fmt .Println (" - Follow the C#/.NET integration guide in documentation" )
429
+ case integrations .FrameworkUnknown :
430
+ fmt .Println (" - Follow the documentation for your specific framework" )
390
431
}
391
432
fmt .Println ()
392
433
stepNum ++
0 commit comments