sui_faucet/lib.rs
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
mod app_state;
mod errors;
mod faucet_config;
mod local_faucet;
mod server;
mod types;
pub use app_state::AppState;
pub use errors::FaucetError;
pub use faucet_config::FaucetConfig;
pub use local_faucet::LocalFaucet;
pub use server::{create_wallet_context, start_faucet};
pub use types::{CoinInfo, FaucetRequest, FaucetResponse, FixedAmountRequest, RequestStatus};