30 lines
No EOL
780 B
C
30 lines
No EOL
780 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_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
|
|
|
|
#ifdef WEBHOOKS
|
|
#ifdef WEBHOOK_UNLOCK
|
|
extern const char* webhook_unlock_url;
|
|
#endif
|
|
#ifdef WEBHOOK_LOCK
|
|
extern const char* webhook_lock_url;
|
|
#endif
|
|
#endif
|
|
#endif |