Skip to content

Commit

Permalink
Fix linter and remove unused header
Browse files Browse the repository at this point in the history
  • Loading branch information
Etheroit committed Jul 10, 2024
1 parent 18412e3 commit f20800b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions mantle/rbx_api/src/places/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pub mod models;

use std::{fs, path::PathBuf};

use reqwest::{header, Body, StatusCode};
use reqwest::{Body, StatusCode};
use serde_json::json;

use crate::{
Expand Down Expand Up @@ -154,7 +154,10 @@ impl RobloxApi {
) -> RobloxApiResult<CreatePlaceResponse> {
let req = self
.client
.post(format!("https://apis.roblox.com/universes/v1/user/universes/{}/places", experience_id))
.post(format!(
"https://apis.roblox.com/universes/v1/user/universes/{}/places",
experience_id
))
.json(&json!({
"templatePlaceId": 95206881
}));
Expand Down

0 comments on commit f20800b

Please sign in to comment.