diff options
author | default <nobody@localhost> | 2022-09-20 10:49:24 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2022-09-20 10:49:24 +0200 |
commit | 9a01f731d76f5b14f98ecf022a7961e24a3360b9 (patch) | |
tree | 2be140104d36a764dea594c8351d1fade68c5234 /main.c | |
parent | 732654e73a5df0c9248726df7cf7b9c54ebfce15 (diff) |
More timeline work.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -27,6 +27,18 @@ int main(int argc, char *argv[]) } { + xs *list = timeline_list(&snac); + char *p, *fn; + + p = list; + while (xs_list_iter(&p, &fn)) { + xs *tle = timeline_get(&snac, fn); + + printf("%s\n", xs_dict_get(tle, "id")); + } + } + + { xs *list = user_list(); char *p, *uid; |