54918934创建于 2022年3月6日历史提交
use std::io::Error;

pub trait Connector {
    fn init(&mut self) -> Result<(), Error>;
}