Local готово
This commit is contained in:
@@ -1,9 +1,5 @@
|
||||
package com.github.nullptroma.wallenc.domain.datatypes
|
||||
|
||||
class EncryptKey {
|
||||
val key: String
|
||||
class EncryptKey(val key: String) {
|
||||
|
||||
constructor(key: String) {
|
||||
this@EncryptKey.key = key
|
||||
}
|
||||
}
|
||||
@@ -35,9 +35,7 @@ interface IStorageAccessor {
|
||||
suspend fun touchFile(path: String)
|
||||
suspend fun touchDir(path: String)
|
||||
suspend fun delete(path: String)
|
||||
suspend fun getFileInfo(path: String)
|
||||
suspend fun getDirInfo(path: String)
|
||||
suspend fun openWrite(path: String): InputStream
|
||||
suspend fun openRead(path: String): OutputStream
|
||||
suspend fun openWrite(path: String): OutputStream
|
||||
suspend fun openRead(path: String): InputStream
|
||||
suspend fun moveToTrash(path: String)
|
||||
}
|
||||
Reference in New Issue
Block a user