2018-07-25 20:16:13 -07:00
|
|
|
pub const Channel = @import("event/channel.zig").Channel;
|
|
|
|
pub const Future = @import("event/future.zig").Future;
|
|
|
|
pub const Group = @import("event/group.zig").Group;
|
|
|
|
pub const Lock = @import("event/lock.zig").Lock;
|
2018-07-09 19:22:44 -07:00
|
|
|
pub const Locked = @import("event/locked.zig").Locked;
|
2018-08-02 14:04:17 -07:00
|
|
|
pub const RwLock = @import("event/rwlock.zig").RwLock;
|
2018-08-01 13:26:37 -07:00
|
|
|
pub const RwLocked = @import("event/rwlocked.zig").RwLocked;
|
2018-07-09 19:22:44 -07:00
|
|
|
pub const Loop = @import("event/loop.zig").Loop;
|
2018-07-25 20:16:13 -07:00
|
|
|
pub const fs = @import("event/fs.zig");
|
2018-07-09 19:22:44 -07:00
|
|
|
pub const tcp = @import("event/tcp.zig");
|
|
|
|
|
|
|
|
test "import event tests" {
|
2018-07-25 20:16:13 -07:00
|
|
|
_ = @import("event/channel.zig");
|
|
|
|
_ = @import("event/fs.zig");
|
|
|
|
_ = @import("event/future.zig");
|
|
|
|
_ = @import("event/group.zig");
|
|
|
|
_ = @import("event/lock.zig");
|
2018-07-09 19:22:44 -07:00
|
|
|
_ = @import("event/locked.zig");
|
2018-08-01 13:26:37 -07:00
|
|
|
_ = @import("event/rwlock.zig");
|
|
|
|
_ = @import("event/rwlocked.zig");
|
2018-07-09 19:22:44 -07:00
|
|
|
_ = @import("event/loop.zig");
|
|
|
|
_ = @import("event/tcp.zig");
|
2018-07-05 12:09:02 -07:00
|
|
|
}
|