mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2025-12-16 12:08:36 +00:00
18 lines
482 B
C++
18 lines
482 B
C++
#include "secrets.h"
|
|
|
|
// Keep in sync with stats/config.py secrets
|
|
// Secrets should be in a shared file rather than maintained this way
|
|
|
|
namespace wi {
|
|
|
|
// For updating the leaderboard with this server's current state
|
|
const char *kszServerInfoSecret = "REPLACEME_SERVERINFOSECRET";
|
|
|
|
// For posting game results to leaderboard
|
|
const char *kszStatSecret = "REPLACEME_ADDGAMESTATSSECRET";
|
|
|
|
// For validating auth tokens
|
|
const char *kszTokenAuthSecret = "REPLACEME_AUTHGOODSECRET";
|
|
|
|
}
|