conn -> pool

This commit is contained in:
Martin Algesten
2018-06-30 14:14:39 +02:00
parent 54558fbb26
commit 3a82ad05ab
3 changed files with 2 additions and 2 deletions

10
src/pool.rs Normal file
View File

@@ -0,0 +1,10 @@
//
#[derive(Debug, Default, Clone)]
pub struct ConnectionPool {}
impl ConnectionPool {
pub fn new() -> Self {
ConnectionPool {}
}
}