sqlite的api,便于内部使用
554325746@qq.com
2020-08-29 b299b8e5342d98d3101d2192eabaffd6b8ac45bd
1
2
3
4
5
6
7
8
9
package dbapi
 
//Factory new client
func NewClient() Client {
    var client Client
    client = &HttpClient{}
    //client = &ReqRepClient{}
    return client
}