async_git/plumbing/
ref.rs1use crate::errors::Result;
2use crate::plumbing::Oid;
3
4pub struct Ref {
5 target: Option<Oid>,
6}
7
8impl Ref {
9 pub fn parse(string: impl AsRef<str>) -> Result<Self> {
10 let string = string.as_ref();
11 if string.starts_with("ref") {}
12
13 unimplemented!()
14 }
15}