summaryrefslogtreecommitdiffstats
path: root/src/runner/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/runner/mod.rs')
-rw-r--r--src/runner/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runner/mod.rs b/src/runner/mod.rs
index 3d4d025..956afde 100644
--- a/src/runner/mod.rs
+++ b/src/runner/mod.rs
@@ -68,7 +68,7 @@ enum Frame {
For(bool, usize, Vec<String>),
}
-pub async fn run() -> anyhow::Result<i32> {
+pub async fn main() -> anyhow::Result<i32> {
// Safety: we don't create File instances for or read/write data on fds
// 3 or 4 anywhere else
let shell_read = unsafe { async_std::fs::File::from_raw_fd(3) };