http_sse/
lib.rs

1// Copyright 2019 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5mod client;
6mod client_server_tests;
7mod event;
8mod linealyzer;
9mod server;
10mod source;
11
12pub use client::{Client, ClientConnectError, ClientPollError};
13pub use event::Event;
14pub use server::{EventSender, SseResponseCreator};
15pub use source::EventSource;