Create files

This commit is contained in:
bitfl0wer 2023-04-05 21:55:27 +02:00
parent c0da93084b
commit abcfb8801c
No known key found for this signature in database
GPG Key ID: 84BBB60DF895ABF2
5 changed files with 15 additions and 0 deletions

11
src/client.rs Normal file
View File

@ -0,0 +1,11 @@
use crate::gateway::Gateway;
use crate::http::Http;
use crate::limit::Ratelimiter;
struct ClientBuilder {}
/* impl ClientBuilder {
fn build() -> Client {}
} */
struct Client {}

1
src/gateway.rs Normal file
View File

@ -0,0 +1 @@
pub struct Gateway {}

1
src/http.rs Normal file
View File

@ -0,0 +1 @@
pub struct Http {}

1
src/limit.rs Normal file
View File

@ -0,0 +1 @@
pub struct Ratelimiter {}

1
src/voice.rs Normal file
View File

@ -0,0 +1 @@