lesscode 0.1.4

低代码工具包
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::collections::HashMap;

pub struct ConnectInfo {
    pub dialect: String,
    pub name: String,
    pub host: String,
    pub port: i32,
    pub user: String,
    pub password: String,
    pub db: String,
    pub params: HashMap<String, String>,
}