Files
herolib/lib/installers/ulist/ulist.v
2025-10-12 12:30:19 +03:00

25 lines
380 B
V

module ulist
// import incubaid.herolib.core.pathlib
// import incubaid.herolib.develop.gittools
// U stands for Upload
pub struct UList {
pub mut:
root string // common base for all UFiles
items []UFile
}
pub struct UFile {
pub mut:
path string
alias string // if other name used for upload, otherwise is the filename
cat UCat
}
pub enum UCat {
file
bin
config
}