mirror of
https://github.com/GayPizzaSpecifications/dough.git
synced 2025-08-17 11:51:32 +00:00
8 lines
163 B
Kotlin
8 lines
163 B
Kotlin
package gay.pizza.dough.fs
|
|
|
|
interface FsProvider : FsPathResolver {
|
|
val currentWorkingDirectory: FsPath
|
|
val separator: String
|
|
val operations: FsOperations
|
|
}
|