2024-01-30 16:33:00 +00:00
|
|
|
#ifndef SECRETS_H
|
|
|
|
#define SECRETS_H
|
|
|
|
|
|
|
|
#ifdef WIFI
|
|
|
|
extern const char* ssid;
|
|
|
|
extern const char* password;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef TINANCE2_BACKEND
|
|
|
|
extern const char* tinance2_url_validatecard;
|
|
|
|
extern const char* tinance2_url_readerinfo;
|
2024-01-31 10:50:05 +00:00
|
|
|
extern const char* tinance2_url_log;
|
2024-01-30 16:33:00 +00:00
|
|
|
extern const char* tinance2_url_acls;
|
|
|
|
extern const char* tinance2_reader_identifer;
|
|
|
|
extern const char* tinance2_reader_key;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef WEB_SERVER
|
|
|
|
extern const char* http_username;
|
|
|
|
extern const char* http_password;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|