Skip to content

Commit

Permalink
Initialize wasm execution provider
Browse files Browse the repository at this point in the history
  • Loading branch information
kthomas committed Jan 10, 2024
1 parent e72f674 commit 86f21fe
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions nex-agent/providers/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ func NewExecutionProvider(params *agentapi.ExecutionProviderParams) (ExecutionPr
// TODO-- return lib.InitNexExecutionProviderOCI(params), nil
return nil, errors.New("oci execution provider not yet implemented")
case NexExecutionProviderWasm:
// TODO-- return lib.InitNexExecutionProviderWasm(params), nil
return nil, errors.New("wasm execution provider not yet implemented")
return lib.InitNexExecutionProviderWasm(params)
default:
break
}
Expand Down

0 comments on commit 86f21fe

Please sign in to comment.