You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
264 B
11 lines
264 B
4 years ago
|
#ifndef LIGHTNING_COMMON_BOLT11_JSON_H
|
||
|
#define LIGHTNING_COMMON_BOLT11_JSON_H
|
||
|
#include "config.h"
|
||
|
|
||
|
struct bolt11;
|
||
|
struct json_stream;
|
||
|
|
||
|
void json_add_bolt11(struct json_stream *response,
|
||
|
const struct bolt11 *b11);
|
||
|
#endif /* LIGHTNING_COMMON_BOLT11_JSON_H */
|