wings/environments/docker.go
Jakob Schrettenbrunner 326fdcae6e very basic thoughts on module and file structure
basic configuration
basic logger
2017-06-19 00:01:44 +02:00

19 lines
266 B
Go

package environments
type DockerEnvironment struct {
BaseEnvironment
}
func NewDockerEnvironment() *DockerEnvironment {
return &DockerEnvironment{}
}
func (env *DockerEnvironment) Exec() error {
}
func (env *DockerEnvironment) Create() error {
return nil
}