23 lines
No EOL
606 B
C
23 lines
No EOL
606 B
C
#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;
|
|
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 |