feat(gateway): split off cache into separate package, rename package to 'gateway'

This commit is contained in:
spiral 2022-05-10 07:04:33 -04:00
parent 433603feaa
commit abb01aaf2c
No known key found for this signature in database
GPG key ID: 244A11E4B0BCF40E
12 changed files with 1733 additions and 33 deletions

6
myriad_rs/build.rs Normal file
View file

@ -0,0 +1,6 @@
use std::io::Result;
fn main() -> Result<()> {
prost_build::compile_protos(&["../proto/discord_cache.proto"], &["../proto/"])?;
Ok(())
}