Fledge
An open source edge computing platform for industrial users
defaults.h
1 #ifndef _DEFAULTS_H
2 #define _DEFAULTS_H
3 /*
4  * Fledge north service configuration defaults for the advanced category.
5  *
6  * Copyright (c) 2020 Dianomic Systems
7  *
8  * Released under the Apache 2.0 Licence
9  *
10  * Author: Mark Riddoch
11  */
12 
13 static struct {
14  const char *name;
15  const char *displayName;
16  const char *description;
17  const char *type;
18  const char *value;
19 } defaults[] = {
20  { NULL, NULL, NULL, NULL, NULL }
21 };
22 #endif