gitql_cli/printer/
base.rs

1use gitql_core::object::GitQLObject;
2
3pub trait OutputPrinter {
4    fn print(&self, object: &mut GitQLObject);
5}