tinance2-doorbot/include/secrets.h

23 lines
606 B
C
Raw Normal View History

#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;
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