gitlib/dto/
init_request.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};
use uuid::Uuid;

use crate::enums::owner_type::OwnerType;

#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub struct InintRequest {
    pub owner_type: OwnerType,
    pub owner: Uuid,
    pub path: String,
    //   pub permission :
}