Skip to content

installers.ulist #

enum UCat #

enum UCat {
	file
	bin
	config
}

struct UFile #

struct UFile {
pub mut:
	path  string
	alias string // if other name used for upload, otherwise is the filename
	cat   UCat
}

struct UList #

struct UList {
pub mut:
	root  string // common base for all UFiles
	items []UFile
}

U stands for Upload