blob: 31b3ae3e0c8887a05e40c5dd42819b27509486bc [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
Stephan Pleinesf63bde82024-01-13 15:59:33 -080016namespace y2024_defense::constants {
Maxwell Hendersonc3d063a2023-12-26 17:37:22 -080017
18Values MakeValues(uint16_t team) {
19 LOG(INFO) << "creating a Constants for team: " << team;
20
21 Values r;
22
23 return r;
24}
25
26Values MakeValues() { return MakeValues(aos::network::GetTeamNumber()); }
27
Stephan Pleinesf63bde82024-01-13 15:59:33 -080028} // namespace y2024_defense::constants