Skip to content

Commit ef101df

Browse files
authored
feat(functions): add new runtimes (#2485)
1 parent e4b0832 commit ef101df

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

api/function/v1beta1/function_sdk.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,9 @@ const (
244244
FunctionRuntimeRust179 = FunctionRuntime("rust179")
245245
FunctionRuntimeGo123 = FunctionRuntime("go123")
246246
FunctionRuntimeGo124 = FunctionRuntime("go124")
247+
FunctionRuntimePython313 = FunctionRuntime("python313")
248+
FunctionRuntimeRust185 = FunctionRuntime("rust185")
249+
FunctionRuntimePhp84 = FunctionRuntime("php84")
247250
)
248251

249252
func (enum FunctionRuntime) String() string {
@@ -288,6 +291,9 @@ func (enum FunctionRuntime) Values() []FunctionRuntime {
288291
"rust179",
289292
"go123",
290293
"go124",
294+
"python313",
295+
"rust185",
296+
"php84",
291297
}
292298
}
293299

0 commit comments

Comments
 (0)