Skip to main content

flow_bot/base/
connect.rs

1/// Currently only WsReverse is supported. I do not intend to implement more but PRs are welcome.
2#[derive(Clone)]
3pub struct ReverseConnectionConfig {
4    pub target: String,
5    pub auth: Option<String>,
6}