Separate crates for server and client binaries #1

Merged
shimun merged 28 commits from split_components into master 2023-07-09 19:27:21 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 991dbaeec9 - Show all commits

View File

@ -1,6 +1,6 @@
use anyhow::bail;
use axum_extra::routing::TypedPath;
use clap::{Args, Parser, Subcommand};
use clap::{Parser, Subcommand};
use reqwest::{Client, StatusCode};
use ssh_key::Certificate;
use std::io::stdin;

View File

@ -1,4 +1,4 @@
use async_trait::async_trait;
use axum_extra::routing::TypedPath;
use serde::Deserialize;