Skip to content

Commit 435dc42

Browse files
committed
sugondat-shim: move serve under cmd mod
1 parent 1506e90 commit 435dc42

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

sugondat-shim/src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::serve;
1+
use crate::cmd::serve;
22
use anyhow::bail;
33
use clap::{Parser, Subcommand};
44
use tracing_subscriber::fmt;

sugondat-shim/src/cmd/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pub mod serve;
File renamed without changes.

sugondat-shim/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
mod adapters;
22
mod cli;
3-
mod serve;
3+
mod cmd;
44
mod sugondat_rpc;
55

66
#[tokio::main]

0 commit comments

Comments
 (0)