// SPDX-FileCopyrightText: © 2026 Jeffrey C. Ollie // SPDX-License-Identifier: MIT //! zsmtp — an SMTP client and server library for Zig (RFC 5321). //! //! Both `Client` and `Server` run over plain `std.Io.Reader`/`std.Io.Writer` //! pairs, so they work with any transport: TCP streams, in-memory buffers in //! tests, or (eventually) a TLS layer. The lower-level protocol pieces — //! reply parsing, command parsing, dot-stuffing — are exposed via `protocol`. const std = @import("std"); pub const protocol = @import("protocol.zig"); pub const Reply = protocol.Reply; pub const Command = protocol.Command; pub const Client = @import("Client.zig"); pub const Server = @import("Server.zig"); test { _ = protocol; _ = Client; _ = Server; }