aboutsummaryrefslogtreecommitdiff
path: root/restapi/auth.h
blob: 0378095429fda016e6cd41627229392140dba828 (plain)
1
2
3
4
5
6
7
8
#ifndef RESTAPI_AUTH_H_
#define RESTAPI_AUTH_H_

const char * // returns authToken if ok, NULL otherwise
restapi_login(const char* username, const char* password);
void restapi_logout(void);

#endif