caeae3b3d9
found BSD-2-Clause
16 lines
437 B
C
16 lines
437 B
C
/* SPDX-FileCopyrightText: 2016-2019, Matthias Schiffer <mschiffer@universe-factory.net> */
|
|
/* SPDX-License-Identifier: BSD-2-Clause */
|
|
|
|
#include "respondd-common.h"
|
|
|
|
#include <respondd.h>
|
|
|
|
|
|
__attribute__ ((visibility ("default")))
|
|
const struct respondd_provider_info respondd_providers[] = {
|
|
{"nodeinfo", respondd_provider_nodeinfo},
|
|
{"statistics", respondd_provider_statistics},
|
|
{"neighbours", respondd_provider_neighbours},
|
|
{}
|
|
};
|