| 10 | use std::path::PathBuf; |
| 11 | |
| 12 | pub struct CommitService { |
| 13 | pub state: NamespaceState, |
| 14 | } |
| 15 | |
| 16 | impl CommitService { |
| 17 | pub fn new(path: PathBuf, namespace_id: String) -> io::Result<Self> { |
nothing calls this directly
no outgoing calls
no test coverage detected