fluent-pad/client/aqua/history.aqua
folex f430b725d2
Aqua HLL + AppConfig (#5)
* Switch to app.config based deployment

* Rewrite user online status checks to peer is_connected api

* Rewrite fluentpad into aquamarine
2021-04-30 17:15:30 +03:00

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