refactor: rename keybind module root source file

This commit is contained in:
CJ van den Berg 2024-11-12 21:39:16 +01:00
parent 07a412c2b2
commit b2c81c50ed
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 2 additions and 2 deletions

View file

@ -160,7 +160,7 @@ pub fn build(b: *std.Build) void {
});
const keybind_static_mod = b.createModule(.{
.root_source_file = b.path("src/keybind/static/root.zig"),
.root_source_file = b.path("src/keybind/static/keybind.zig"),
.imports = &.{
.{ .name = "cbor", .module = cbor_mod },
.{ .name = "command", .module = command_mod },

View file

@ -5,7 +5,7 @@ const event_type = @import("renderer").input.event_type;
const mod = @import("renderer").input.modifier;
const command = @import("command");
const EventHandler = @import("EventHandler");
const keybind = @import("../root.zig");
const keybind = @import("../keybind.zig");
const Self = @This();