Skip to content

Commit

Permalink
Clean up Clients and Events for a successful PR.
Browse files Browse the repository at this point in the history
  • Loading branch information
Makosai committed Aug 14, 2024
1 parent b601b55 commit 994d4ff
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions src/Clients/client.zig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
//! A standard client that connects to a server.

const Client = @This();
1 change: 1 addition & 0 deletions src/Clients/clients.zig
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub const Client = @import("Client.zig");
1 change: 1 addition & 0 deletions src/Events/BaseEvent.zig
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
const BaseEvent = @This();
3 changes: 0 additions & 3 deletions src/Events/base_event.zig

This file was deleted.

1 change: 1 addition & 0 deletions src/Events/events.zig
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub const BaseEvent = @import("BaseEvent.zig");

0 comments on commit 994d4ff

Please sign in to comment.