Files
herolib/lib/osal/linux/factory.v
Mahmoud-Emad dd400ba6fa style: improve code formatting; refactor module imports
- Apply consistent alignment for struct fields and parameters
- Standardize string literal delimiters to single quotes
- Refactor module import strategy in `models` package
- Enhance asset formatting for precise decimal display
- Remove unused imports and redundant `+}` syntax artifacts
2025-09-03 11:36:02 +03:00

22 lines
275 B
V

module linux
@[heap]
pub struct LinuxFactory {
pub mut:
username string
}
@[params]
pub struct LinuxNewArgs {
pub:
username string
}
// return screen instance
pub fn new(args LinuxNewArgs) !LinuxFactory {
mut t := LinuxFactory{
username: args.username
}
return t
}