Skip to main content

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
12#[cfg(target_os = "fuchsia")]
13pub use client::FromHttpLoaderError;
14pub use client::{Client, ClientPollError, FromHyperClientError};
15pub use event::Event;
16pub use server::{EventSender, SseResponseCreator};
17pub use source::EventSource;