This commit is contained in:
Christoph M. Wintersteiger 2022-08-05 15:09:12 +01:00 коммит произвёл GitHub
Родитель a83d0a2fb5
Коммит 03955ecd67
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -143,7 +143,7 @@ This involves the following steps:
- store all files according to the app bundle folder structure.
For this, the sample app relies on the `TypeScript compiler <https://www.npmjs.com/package/typescript>`_ and
`rollup <https://rollupjs.org>`_. Rollup also offers tree shaking support
`rollup <https://github.com/rollup/rollup>`_. Rollup also offers tree shaking support
to avoid deploying unused modules. See ``package.json`` and ``rollup.config.js`` for details.
The conversion command is invoked with

Просмотреть файл

@ -2,6 +2,7 @@
// Licensed under the Apache 2.0 License.
#pragma once
#include <map>
#include <string>
namespace http

Просмотреть файл

@ -8,6 +8,7 @@
#include "ccf/crypto/verifier.h"
#include "ccf/ds/logger.h"
#include "ccf/serdes.h"
#include "ccf/service/node_info_network.h"
#include "ccf/service/tables/acme_certificates.h"
#include "ccf/service/tables/service.h"
#include "ccf_acme_client.h"