mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-03-13 15:04:11 +00:00
11 lines
334 B
C
11 lines
334 B
C
// 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;
|
|
}
|