Initial commit

This commit is contained in:
Carl Lerche
2019-12-03 21:49:10 -08:00
commit 358e95e57c
22 changed files with 1420 additions and 0 deletions

5
examples/chat.rs Normal file
View File

@@ -0,0 +1,5 @@
#[tokio::main]
async fn main() {
unimplemented!();
}

0
examples/hello_world.rs Normal file
View File

0
examples/pub.rs Normal file
View File

6
examples/sub.rs Normal file
View File

@@ -0,0 +1,6 @@
/// Subscribe to a redis channel
#[tokio::main]
async fn main() {
unimplemented!();
}