| 321 | struct CtxLevel { |
| 322 | enum class Mode { Json, Form, Slice }; |
| 323 | CtxLevel(nlohmann::json *obj, std::string path) : obj(obj), path(std::move(path)), mode(Mode::Json) { |
| 324 | } |
| 325 | CtxLevel(MultipartFormDataMap *fields, std::string path) : fields(fields), path(std::move(path)), mode(Mode::Form) { |
| 326 | } |
| 327 | CtxLevel(MultipartFormDataValue *field, std::string path) |
nothing calls this directly
no outgoing calls
no test coverage detected