Files
herolib/lib/osal/osinstaller/factory.v
2025-10-12 12:30:19 +03:00

25 lines
356 B
V

module osinstaller
import os
import incubaid.herolib.ui.console
// import json
// import maxux.vssh
struct ServerManager {
root string
}
pub fn new() ServerManager {
sm := ServerManager{}
return sm
}
fn (s ServerManager) execute(command string) bool {
console.print_debug(command)
r := os.execute(command)
console.print_debug(r)
return true
}