From 064aa92cb49082d61fb97be1302cf37a1dabb081 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Tue, 4 Mar 2025 19:37:33 +0100 Subject: [PATCH] Fix example --- examples/api_curl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/api_curl.rs b/examples/api_curl.rs index 6e4a626..a2669fd 100644 --- a/examples/api_curl.rs +++ b/examples/api_curl.rs @@ -2,7 +2,7 @@ use clap::Parser; use jwt_simple::algorithms::HS256Key; use jwt_simple::prelude::{Clock, Duration, JWTClaims, MACLike}; use matrix_gateway::extractors::client_auth::TokenClaims; -use matrix_gateway::utils::rand_str; +use matrix_gateway::utils::base_utils::rand_str; use std::ops::Add; use std::os::unix::prelude::CommandExt; use std::process::Command;