1use anyhow::Result;
2use axum::{response::IntoResponse, Json};
3use serde_json::json;
4
5use crate::errors::SupercellError;
6
7pub async fn handle_index() -> Result<impl IntoResponse, SupercellError> {
8 Ok(Json(json!({"ok": true})).into_response())
9}