mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-03-22 04:34:44 +00:00
10 lines
219 B
Zig
10 lines
219 B
Zig
const std = @import("std");
|
|
|
|
pub const protocol = @import("mcp/protocol.zig");
|
|
pub const router = @import("mcp/router.zig");
|
|
pub const Server = @import("mcp/Server.zig");
|
|
|
|
test {
|
|
std.testing.refAllDecls(@This());
|
|
}
|