Refactor and prepare to remove MinMaxAvgWaveBins

This commit is contained in:
Dominik Werder
2022-06-16 19:24:55 +02:00
parent 8090088448
commit f183f0bb28
6 changed files with 79 additions and 56 deletions

9
dbconn/src/bincache.rs Normal file
View File

@@ -0,0 +1,9 @@
use err::Error;
use scylla::Session as ScySession;
pub async fn search_channel_scylla<BINC>(_scy: &ScySession) -> Result<(), Error>
where
BINC: Clone,
{
todo!()
}

View File

@@ -1,4 +1,5 @@
pub mod scan;
pub mod bincache;
pub mod search;
pub mod pg {
pub use tokio_postgres::{Client, Error};