mirror of
https://github.com/TermoraDev/termora.git
synced 2026-01-16 10:22:58 +08:00
11 lines
200 B
Kotlin
11 lines
200 B
Kotlin
package app.termora.vfs
|
|
|
|
import okio.Path.Companion.toPath
|
|
import kotlin.test.Test
|
|
|
|
class TestFileSystem {
|
|
@Test
|
|
fun test() {
|
|
println(okio.FileSystem.SYSTEM.list(".".toPath()))
|
|
}
|
|
} |