patx/relay-lang

Reorder imports in main.rs for consistency

Commit b150f2b · Harrison Erd · 2026-02-09T19:44:56-05:00

Changeset
b150f2ba8f1379b6cac646dd35683aa524ea358c
Parents
1631b8eb9a86fc83f0a2ee8c5a38cfb14922dda0

View source at this commit

Comments

No comments yet.

Log in to comment

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,