fn: add support for python (#328)

This commit is contained in:
C Cirello
2016-11-21 23:12:30 +01:00
committed by Seif Lotfy سيف لطفي
parent 8935c26951
commit d13c8fba8c
4 changed files with 48 additions and 1 deletions

View File

@@ -11,6 +11,8 @@ func GetLangHelper(lang string) (LangHelper, error) {
return &NodeLangHelper{}, nil
case "ruby":
return &RubyLangHelper{}, nil
case "python":
return &PythonHelper{}, nil
}
return nil, fmt.Errorf("No language helper found for %v", lang)
}