2018-07-09 19:22:44 -07:00
|
|
|
pub const Locked = @import("event/locked.zig").Locked;
|
|
|
|
pub const Loop = @import("event/loop.zig").Loop;
|
|
|
|
pub const Lock = @import("event/lock.zig").Lock;
|
|
|
|
pub const tcp = @import("event/tcp.zig");
|
|
|
|
pub const Channel = @import("event/channel.zig").Channel;
|
2018-07-10 12:17:01 -07:00
|
|
|
pub const Group = @import("event/group.zig").Group;
|
2018-07-11 17:17:47 -07:00
|
|
|
pub const Future = @import("event/future.zig").Future;
|
2018-07-09 19:22:44 -07:00
|
|
|
|
|
|
|
test "import event tests" {
|
|
|
|
_ = @import("event/locked.zig");
|
|
|
|
_ = @import("event/loop.zig");
|
|
|
|
_ = @import("event/lock.zig");
|
|
|
|
_ = @import("event/tcp.zig");
|
|
|
|
_ = @import("event/channel.zig");
|
2018-07-10 12:17:01 -07:00
|
|
|
_ = @import("event/group.zig");
|
2018-07-11 12:58:48 -07:00
|
|
|
_ = @import("event/future.zig");
|
2018-07-05 12:09:02 -07:00
|
|
|
}
|