13 lines
244 B
V
13 lines
244 B
V
module docker
|
|
|
|
import freeflowuniverse.herolib.data.paramsparser { Params }
|
|
|
|
@[params]
|
|
pub struct BuildArgs {
|
|
pub mut:
|
|
reset bool // resets the docker state, will build again
|
|
strict bool // question: ?
|
|
engine &DockerEngine
|
|
args Params
|
|
}
|