Remove the todos from the last commit

This commit is contained in:
kozabrada123 2023-07-28 18:57:35 +02:00
parent d0547cb1f0
commit 8eb2e2008c
1 changed files with 2 additions and 3 deletions

View File

@ -65,7 +65,7 @@ impl Guild {
Channel::create(user, self.id, schema).await Channel::create(user, self.id, schema).await
} }
// TODO: Docs: What is this endpoint? /// Returns a list of the guild's channels
pub async fn channels(&self, user: &mut UserMeta) -> ChorusResult<Vec<Channel>> { pub async fn channels(&self, user: &mut UserMeta) -> ChorusResult<Vec<Channel>> {
let chorus_request = ChorusRequest { let chorus_request = ChorusRequest {
request: Client::new() request: Client::new()
@ -96,8 +96,7 @@ impl Guild {
}; };
} }
// TODO: Check if these docs are correct, Im not sure what this endpoint is /// Fetches a guild by its id.
/// Fetches a given guild.
pub async fn get(guild_id: Snowflake, user: &mut UserMeta) -> ChorusResult<Guild> { pub async fn get(guild_id: Snowflake, user: &mut UserMeta) -> ChorusResult<Guild> {
let chorus_request = ChorusRequest { let chorus_request = ChorusRequest {
request: Client::new() request: Client::new()