1 #ifndef LIGHTNING_COMMON_BOLT11_JSON_H
2 #define LIGHTNING_COMMON_BOLT11_JSON_H
3 #include "config.h"
4 
5 struct bolt11;
6 struct json_stream;
7 
8 void json_add_bolt11(struct json_stream *response,
9 		     const struct bolt11 *b11);
10 #endif /* LIGHTNING_COMMON_BOLT11_JSON_H */
11