14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
method: lib.http.method.t
live_last: lib.store.timepoint
uploads: lib.mem.vec(lib.http.upload)
body: pstring
-- cache
ui_hue: uint16
navbar: pstring
actorcache: lib.mem.cache(lib.mem.ptr(lib.store.actor),32) -- naive cache to avoid unnecessary queries
-- private
varbuf: pstring
vbofs: &int8
}
struct convo.page {
title: pstring
|
|
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
method: lib.http.method.t
live_last: lib.store.timepoint
uploads: lib.mem.vec(lib.http.upload)
body: pstring
-- cache
ui_hue: uint16
navbar: pstring
actorcache: lib.mem.cache(lib.mem.ptr(lib.store.actor),32,true) -- naive cache to avoid unnecessary queries
-- private
varbuf: pstring
vbofs: &int8
}
struct convo.page {
title: pstring
|