refactor: rename keybind module root source file
This commit is contained in:
parent
07a412c2b2
commit
b2c81c50ed
3 changed files with 2 additions and 2 deletions
|
@ -160,7 +160,7 @@ pub fn build(b: *std.Build) void {
|
||||||
});
|
});
|
||||||
|
|
||||||
const keybind_static_mod = b.createModule(.{
|
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 = &.{
|
.imports = &.{
|
||||||
.{ .name = "cbor", .module = cbor_mod },
|
.{ .name = "cbor", .module = cbor_mod },
|
||||||
.{ .name = "command", .module = command_mod },
|
.{ .name = "command", .module = command_mod },
|
||||||
|
|
|
@ -5,7 +5,7 @@ const event_type = @import("renderer").input.event_type;
|
||||||
const mod = @import("renderer").input.modifier;
|
const mod = @import("renderer").input.modifier;
|
||||||
const command = @import("command");
|
const command = @import("command");
|
||||||
const EventHandler = @import("EventHandler");
|
const EventHandler = @import("EventHandler");
|
||||||
const keybind = @import("../root.zig");
|
const keybind = @import("../keybind.zig");
|
||||||
|
|
||||||
const Self = @This();
|
const Self = @This();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue