pulumi/pkg/engine/env_init.go
joeduffy f189c40f35 Wire up Lumi to the new runtime strategy
🔥 🔥 🔥  🔥 🔥 🔥

Getting closer on #311.
2017-09-04 11:35:21 -07:00

11 lines
228 B
Go

// Copyright 2017, Pulumi Corporation. All rights reserved.
package engine
import "github.com/pulumi/pulumi-fabric/pkg/tokens"
func (eng *Engine) InitEnv(name string) error {
eng.createEnv(tokens.QName(name))
return nil
}