use axum::{extract::State, Json}; use saleor_app_sdk::{manifest::AppManifest}; use crate::app::{AppError, AppState}; pub async fn manifest(State(state): State) -> Result, AppError> { Ok(Json(state.manifest)) }