refactor: transfer

This commit is contained in:
hstyi
2025-06-21 16:52:55 +08:00
committed by hstyi
parent e6a45d25cd
commit e1eab9db06
113 changed files with 4592 additions and 4695 deletions

View File

@@ -0,0 +1,11 @@
package app.termora.vfs
import okio.Path.Companion.toPath
import kotlin.test.Test
class TestFileSystem {
@Test
fun test() {
println(okio.FileSystem.SYSTEM.list(".".toPath()))
}
}