Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
Antonio Scandurra 2023-06-30 18:03:21 +02:00
parent cdeabcab4e
commit f4d71b2b24
6 changed files with 277 additions and 29 deletions

View 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 = ();
}