refactor: remove dependency on herolib.osal

- Replaced `freeflowuniverse.herolib.osal` with `freeflowuniverse.herolib.core`
This commit is contained in:
Mahmoud Emad
2025-01-19 09:48:05 +02:00
parent 03e5a56d62
commit de45ed3a07

View File

@@ -1,12 +1,11 @@
module main
import freeflowuniverse.herolib.osal
import freeflowuniverse.herolib.installers.base
import freeflowuniverse.herolib.core
fn do() ! {
// base.uninstall_brew()!
// println("something")
if osal.is_osx() {
if core.is_osx()! {
println('IS OSX')
}