forked from mirror/qmk_firmware
Community modules (#24848)
This commit is contained in:
10
modules/qmk/hello_world/introspection.c
Normal file
10
modules/qmk/hello_world/introspection.c
Normal file
@@ -0,0 +1,10 @@
|
||||
// Copyright 2025 Nick Brassel (@tzarc)
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
hello_world_introspection_t hello_world_introspection(void) {
|
||||
hello_world_introspection_t introspection = {
|
||||
.total_size = sizeof(keymaps),
|
||||
.layer_count = sizeof(keymaps) / sizeof(keymaps[0]),
|
||||
};
|
||||
return introspection;
|
||||
}
|
||||
Reference in New Issue
Block a user