fix: add missing PathBuf import
Some checks failed
BotServer CI / build (push) Failing after 8m0s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-03-03 10:03:49 -03:00
parent b2d6a51ebd
commit 6195062482

View file

@ -5,7 +5,7 @@ use serde_json::Value;
// use std::collections::HashMap; // use std::collections::HashMap;
use std::fs::OpenOptions; use std::fs::OpenOptions;
use std::io::Write; use std::io::Write;
use std::path::Path; use std::path::{Path, PathBuf};
use std::sync::Arc; use std::sync::Arc;
use uuid::Uuid; use uuid::Uuid;