blob: fa7a14cc7c7c365f55897856b25a8ed07f240c82 [file] [log] [blame]
Maxwell Hendersonc3d063a2023-12-26 17:37:22 -08001#include "y2024_defense/constants.h"
2
3#include <cinttypes>
4#include <map>
5
6#if __has_feature(address_sanitizer)
7#include "sanitizer/lsan_interface.h"
8#endif
9
10#include "absl/base/call_once.h"
11#include "glog/logging.h"
12
13#include "aos/mutex/mutex.h"
14#include "aos/network/team_number.h"
15
16namespace y2024_defense {
17namespace constants {
18
19Values MakeValues(uint16_t team) {
20 LOG(INFO) << "creating a Constants for team: " << team;
21
22 Values r;
23
24 return r;
25}
26
27Values MakeValues() { return MakeValues(aos::network::GetTeamNumber()); }
28
29} // namespace constants
30} // namespace y2024_defense