patx/relay-lang
Reorder imports in main.rs for consistency
Commit b150f2b · Harrison Erd · 2026-02-09T19:44:56-05:00
Comments
No comments yet.
Diff
diff --git a/src/main.rs b/src/main.rs
index 69b399b..01af233 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,3 +1,4 @@
+
// relay.rs — Relay v0.1 single-file interpreter (Tokio runtime)
// - Indentation-based parser (spaces only, 4 per level)
// - AST + async evaluator
@@ -18,8 +19,8 @@ use std::{
};
use axum::{
- extract::{Method, Path, Query},
- http::{HeaderMap, StatusCode},
+ extract::{Path, Query},
+ http::{HeaderMap, Method, StatusCode},
response::IntoResponse,
routing::{get, post},
Json as AxumJson, Router,