mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
13 lines
282 B
C++
13 lines
282 B
C++
|
// Copyright (c) OpenMMLab. All rights reserved.
|
||
|
|
||
|
#include "core/utils/formatter.h"
|
||
|
|
||
|
#include "archive/json_archive.h"
|
||
|
#include "core/value.h"
|
||
|
|
||
|
namespace mmdeploy {
|
||
|
|
||
|
std::string format_value(const Value& value) { return mmdeploy::to_json(value).dump(2); }
|
||
|
|
||
|
} // namespace mmdeploy
|