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

15 lines
293 B
C

/*
* Treebird - Lightweight frontend for Pleroma
*
* Licensed under the BSD 3-Clause License
*/
#include <stdlib.h>
#include "timeline.h"
int content_index(FCGX_Request* req, struct session* ssn, mastodont_t* api)
{
// Check logins
return content_tl_home(req, ssn, api, NULL);
}