blob: 82adfd7f040382e307f23b9216b353a02da264e9 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PERIDOT_LIB_MODULE_MANIFEST_SOURCE_JSON_H_
#define PERIDOT_LIB_MODULE_MANIFEST_SOURCE_JSON_H_
#include "peridot/lib/module_manifest_source/module_manifest_source.h"
namespace modular {
bool ModuleManifestEntryFromJson(const std::string& json,
fuchsia::modular::ModuleManifest* entry);
void ModuleManifestEntryToJson(const fuchsia::modular::ModuleManifest& entry,
std::string* json);
} // namespace modular
#endif // PERIDOT_LIB_MODULE_MANIFEST_SOURCE_JSON_H_