Files
shell.kt/src/commonMain/kotlin/com/infendro/shell/Shell.kt
Infendro 3565632465
Some checks failed
/ publish (push) Failing after 53s
initial commit
2025-07-12 20:23:00 +02:00

21 lines
379 B
Kotlin

package com.infendro.shell
object Shell {
suspend fun run(
command: Array<String>,
directory: String? = null,
): Result {
return execute(command, directory)
}
class Result(
val code: Int,
val value: String,
)
}
internal expect suspend fun execute(
command: Array<String>,
directory: String?,
): Shell.Result