blob: e5e2a57e189a777854f42f3ee142c9995edcd942 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include <util/generic/size_literals.h>
#include <util/system/defaults.h>
constexpr auto robots_max = 500_KB;
constexpr auto max_rules_count = 10'000;
constexpr auto max_rule_length = 10_KB;
|