Files
herolib/lib/virt/docker/docker_build_args.v
2024-12-25 20:13:02 +01:00

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
}