2018-07-26 04:16:13 +01: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;
|
2020-02-16 18:25:30 +00:00
|
|
|
pub const Batch = @import("event/batch.zig").Batch;
|
2018-07-26 04:16:13 +01:00
|
|
|
pub const Lock = @import("event/lock.zig").Lock;
|
2018-07-10 03:22:44 +01:00
|
|
|
pub const Locked = @import("event/locked.zig").Locked;
|
2018-08-02 22:04:17 +01:00
|
|
|
pub const RwLock = @import("event/rwlock.zig").RwLock;
|
2018-08-01 21:26:37 +01:00
|
|
|
pub const RwLocked = @import("event/rwlocked.zig").RwLocked;
|
2018-07-10 03:22:44 +01:00
|
|
|
pub const Loop = @import("event/loop.zig").Loop;
|
2020-12-01 16:24:02 +00:00
|
|
|
pub const WaitGroup = @import("event/wait_group.zig").WaitGroup;
|
2018-07-10 03:22:44 +01:00
|
|
|
|
2021-08-30 22:43:46 +01:00
|
|
|
test {
|
2018-07-26 04:16:13 +01:00
|
|
|
_ = @import("event/channel.zig");
|
|
|
|
_ = @import("event/future.zig");
|
|
|
|
_ = @import("event/group.zig");
|
2020-02-16 18:25:30 +00:00
|
|
|
_ = @import("event/batch.zig");
|
2018-07-26 04:16:13 +01:00
|
|
|
_ = @import("event/lock.zig");
|
2018-07-10 03:22:44 +01:00
|
|
|
_ = @import("event/locked.zig");
|
2018-08-01 21:26:37 +01:00
|
|
|
_ = @import("event/rwlock.zig");
|
|
|
|
_ = @import("event/rwlocked.zig");
|
2018-07-10 03:22:44 +01:00
|
|
|
_ = @import("event/loop.zig");
|
2020-10-02 18:15:26 +01:00
|
|
|
_ = @import("event/wait_group.zig");
|
2018-07-05 20:09:02 +01:00
|
|
|
}
|