hostile-takeover/server/secrets.cpp
2014-07-06 17:47:28 -07:00

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";
}