mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2025-08-05 07:03:27 +02:00
23 lines
368 B
Rust
23 lines
368 B
Rust
use std::sync::Arc;
|
|
|
|
pub fn connect() -> eyre::Result<Client> {
|
|
Client::new()
|
|
}
|
|
|
|
struct InnerClient {}
|
|
|
|
#[allow(dead_code)]
|
|
pub struct Client {
|
|
inner: Arc<InnerClient>,
|
|
}
|
|
|
|
impl Client {
|
|
pub fn new() -> eyre::Result<Self> {
|
|
Ok(Self {
|
|
inner: Arc::new(InnerClient {}),
|
|
})
|
|
}
|
|
|
|
// pub fn container(&self) -> Container {}
|
|
}
|