Files
herolib/lib/virt/docker/docker_build_args.v
2025-10-12 12:30:19 +03:00

13 lines
236 B
V

module docker
import incubaid.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
}