mirror of
https://github.com/ziglang/zig.git
synced 2024-12-04 19:09:32 +00:00
29 lines
1.2 KiB
Zig
29 lines
1.2 KiB
Zig
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2015-2021 Zig Contributors
|
|
// This file is part of [zig](https://ziglang.org/), which is MIT licensed.
|
|
// The MIT license requires this copyright notice to be included in all copies
|
|
// and substantial portions of the software.
|
|
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 Batch = @import("event/batch.zig").Batch;
|
|
pub const Lock = @import("event/lock.zig").Lock;
|
|
pub const Locked = @import("event/locked.zig").Locked;
|
|
pub const RwLock = @import("event/rwlock.zig").RwLock;
|
|
pub const RwLocked = @import("event/rwlocked.zig").RwLocked;
|
|
pub const Loop = @import("event/loop.zig").Loop;
|
|
pub const WaitGroup = @import("event/wait_group.zig").WaitGroup;
|
|
|
|
test "import event tests" {
|
|
_ = @import("event/channel.zig");
|
|
_ = @import("event/future.zig");
|
|
_ = @import("event/group.zig");
|
|
_ = @import("event/batch.zig");
|
|
_ = @import("event/lock.zig");
|
|
_ = @import("event/locked.zig");
|
|
_ = @import("event/rwlock.zig");
|
|
_ = @import("event/rwlocked.zig");
|
|
_ = @import("event/loop.zig");
|
|
_ = @import("event/wait_group.zig");
|
|
}
|