aboutsummaryrefslogtreecommitdiff
path: root/src/blocks/group.c
diff options
context:
space:
mode:
authorFederico Angelilli <code@fedang.net>2024-09-08 14:42:22 +0200
committerFederico Angelilli <code@fedang.net>2024-09-08 14:42:22 +0200
commitfeae7fb2bed5357a5e685063e3f6ff005bfc0bd5 (patch)
treee45b8568ed14bc2cc50d6697439adf25752326df /src/blocks/group.c
parent43238419974e599a84f17b5faa8fb52401bdfe90 (diff)
Add blocks schemes and time config
Diffstat (limited to 'src/blocks/group.c')
-rw-r--r--src/blocks/group.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/blocks/group.c b/src/blocks/group.c
new file mode 100644
index 0000000..fb4457e
--- /dev/null
+++ b/src/blocks/group.c
@@ -0,0 +1,12 @@
+#include "scheme.h"
+
+const block_scheme_t block_group_scheme = {
+ .name = "group",
+ .block = {
+ .type = BLOCK_GROUP,
+ },
+ .size = 0,
+ .entries = NULL,
+ .verify = NULL,
+};
+