public ModuleWizardStep[] createSteps(WizardContext context) {
ProjectWizardStepFactory factory = ProjectWizardStepFactory.getInstance();
//Add a step into the importer, with which the user can choose the used Go SDK
return new ModuleWizardStep[] {factory.createProjectJdkStep(context,
SdkType.findInstance(GoSdkType.class), new GoModuleBuilder(),
new Computable.PredefinedValueComputable<Boolean>(true), null, "")};
}