Skip to content

Commit bb532b8

Browse files
identified missing parts
1 parent 7ccd57c commit bb532b8

7 files changed

Lines changed: 14 additions & 12 deletions

File tree

crates/client/src/cli/go/cmd/run.rs

Whitespace-only changes.

crates/client/src/cli/go/cmd/up.rs

Whitespace-only changes.
Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
//! Raw semantically and logically unsafe (as Go is) port of Go code.
21
//! Keep in sync with `flags.go`.
3-
//! Only commands to start process compose and get its handle to manage.
4-
//! AI agents do it well.
5-
62
use std::path::PathBuf;
73
use std::time::Duration;
84

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pub mod flags;

crates/client/src/cli/go/mod.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
//! Raw semantically and logically unsafe (as Go is) port of Go code.
2+
//! Only commands to start process compose and get its handle to manage.
3+
//! AI agents do it well.
4+
pub mod config;

crates/client/src/cli/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pub mod types;
1+
pub mod go;

src/cmd/root.go

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ import (
44
"context"
55
"errors"
66
"fmt"
7+
"io"
8+
"net/http"
9+
"os"
10+
"path"
11+
"runtime"
12+
"strconv"
13+
"time"
14+
715
"github.com/f1bonacc1/process-compose/src/admitter"
816
"github.com/f1bonacc1/process-compose/src/api"
917
"github.com/f1bonacc1/process-compose/src/app"
@@ -13,13 +21,6 @@ import (
1321
"github.com/rs/zerolog"
1422
"github.com/rs/zerolog/log"
1523
"github.com/spf13/cobra"
16-
"io"
17-
"net/http"
18-
"os"
19-
"path"
20-
"runtime"
21-
"strconv"
22-
"time"
2324
)
2425

2526
var (

0 commit comments

Comments
 (0)