mirror of
https://github.com/fluencelabs/fluent-pad
synced 2025-04-24 16:32:13 +00:00
* Switch to app.config based deployment * Rewrite user online status checks to peer is_connected api * Rewrite fluentpad into aquamarine
22 lines
475 B
Plaintext
22 lines
475 B
Plaintext
import "common.aqua"
|
|
|
|
data AddServiceResult:
|
|
ret_code: s32
|
|
err_msg: string
|
|
entry_id: u64
|
|
|
|
data HistoryEntry:
|
|
id: u64
|
|
body: string
|
|
|
|
data GetEntriesServiceResult:
|
|
ret_code: s32
|
|
err_msg: string
|
|
entries: []HistoryEntry
|
|
|
|
service History:
|
|
get_all: bool -> GetEntriesServiceResult
|
|
get_last: u64, bool -> GetEntriesServiceResult
|
|
add: string, bool -> AddServiceResult
|
|
set_tetraplet: string, string, string, string -> EmptyServiceResult
|