gitextract_fq1obx4l/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── cd.yml │ ├── ci.yml │ └── close-stale-issues-and-PRs.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── ISSUES.md ├── LICENSE ├── README.md ├── docs/ │ ├── Code_Contributions_Guidelines.md │ ├── Setup.md │ └── Subcommands.md └── src/ ├── command/ │ ├── deploy.rs │ ├── doctor.rs │ ├── list.rs │ ├── mod.rs │ ├── remove.rs │ ├── restart.rs │ ├── stop.rs │ ├── ui/ │ │ ├── emoji.rs │ │ └── mod.rs │ ├── update.rs │ └── utils.rs ├── lib.rs ├── main.rs └── result.rs