mirror of
https://github.com/fluencelabs/examples
synced 2025-05-05 15:42:15 +00:00
14 lines
239 B
Plaintext
14 lines
239 B
Plaintext
data SizeResult:
|
|
size: u32
|
|
success: bool
|
|
error: string
|
|
|
|
data WriteResult:
|
|
path: string
|
|
success: bool
|
|
error: string
|
|
|
|
service ProcessFiles:
|
|
file_size(file_path: string) -> SizeResult
|
|
write_file_size(size: u32) -> WriteResult
|