mirror of
https://github.com/Astatin3/unshell.git
synced 2026-06-08 22:38:01 -06:00
10 lines
149 B
Rust
10 lines
149 B
Rust
|
|
use serde_json::Value;
|
||
|
|
|
||
|
|
use crate::Server;
|
||
|
|
|
||
|
|
impl Server {
|
||
|
|
pub fn get_blobs(&self) -> Result<Vec<Value>, String> {
|
||
|
|
Ok(Vec::new())
|
||
|
|
}
|
||
|
|
}
|