hide the route logs behind a feature flag

This commit is contained in:
Tamo 2024-02-05 13:29:01 +01:00 committed by Louis Dureuil
parent 80774148fd
commit 7793ba67a4
No known key found for this signature in database
6 changed files with 44 additions and 4 deletions

View file

@ -5,6 +5,7 @@ use serde::{Deserialize, Serialize};
pub struct RuntimeTogglableFeatures {
pub vector_store: bool,
pub metrics: bool,
pub logs_route: bool,
pub export_puffin_reports: bool,
}