326fdcae6e
basic configuration basic logger
19 lines
266 B
Go
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
|
|
}
|