treebird/src/global_cache.h
nekobit ded0b83151 3rd clause
FossilOrigin-Name: 8766275cac121ced2142c9dee80f2c21a0337e9eb65501961807aba8fca0f252
2022-11-14 15:36:33 +00:00

25 lines
444 B
C

/*
* Treebird - Lightweight frontend for Pleroma
*
* Licensed under the BSD 3-Clause License
*/
#ifndef GLOBAL_CACHE_H
#define GLOBAL_CACHE_H
#include <mastodont.h>
#if 0
struct global_cache
{
struct mstdnt_fetch_results tos_html;
struct mstdnt_fetch_results panel_html;
};
extern struct global_cache g_cache;
void load_instance_info_cache(mastodont_t* api);
void free_instance_info_cache();
#endif
#endif /* GLOBAL_CACHE_H */