blob: 1f336600d3ffb357950881bdf2a1a6a5a56b2bcf (
plain)
1
2
3
4
5
6
7
|
use crate::data::compile_info::CompileInfo;
use just_enough_vcs::data::compile_info::CoreCompileInfo;
pub struct JVCompileInfoCollect {
pub compile_info: CompileInfo,
pub compile_info_core: CoreCompileInfo,
}
|