1
0
mirror of https://github.com/haiwen/seafile-server.git synced 2025-06-27 23:46:48 +00:00
seafile-server/server/notif-mgr.h
feiniks 0b5b0bf43c
Delete seafile_auth_token option (#594)
Co-authored-by: 杨赫然 <heran.yang@seafile.com>
2023-02-11 10:54:50 +08:00

20 lines
396 B
C

#ifndef HTTP_NOTIFICATION_MGR_H
#define HTTP_NOTIFICATION_MGR_H
struct _NotifManager {
struct _SeafileSession *seaf;
struct _NotifPriv *priv;
};
typedef struct _NotifManager NotifManager;
NotifManager *
seaf_notif_manager_new (struct _SeafileSession *seaf, char *url);
void
seaf_notif_manager_send_event (NotifManager *mgr,
const char *msg);
#endif