Files
herolib/lib/osal/osinstaller/factory.v
2024-12-25 08:40:56 +01:00

25 lines
370 B
V

module osinstaller
import os
import freeflowuniverse.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
}