mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
Inital work on Rust support (#333)
* Inital work on Rust support * update accepted runtimes * fn: fix rust build * Last tweaks and README.md * fix typo * update comment on rust.go
This commit is contained in:
committed by
C Cirello
parent
3788c968eb
commit
237ab3e21b
@@ -13,6 +13,8 @@ func GetLangHelper(lang string) (LangHelper, error) {
|
||||
return &RubyLangHelper{}, nil
|
||||
case "python":
|
||||
return &PythonHelper{}, nil
|
||||
case "rust":
|
||||
return &RustLangHelper{}, nil
|
||||
}
|
||||
return nil, fmt.Errorf("No language helper found for %v", lang)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user