WIP
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
parent
cdeabcab4e
commit
f4d71b2b24
6 changed files with 277 additions and 29 deletions
11
crates/crdb/src/messages.rs
Normal file
11
crates/crdb/src/messages.rs
Normal file
|
@ -0,0 +1,11 @@
|
|||
use crate::{RepoId, Request};
|
||||
use std::sync::Arc;
|
||||
|
||||
pub struct PublishRepo {
|
||||
pub id: RepoId,
|
||||
pub name: Arc<str>,
|
||||
}
|
||||
|
||||
impl Request for PublishRepo {
|
||||
type Response = ();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue