ligen_ir/registry/mod.rs
1use is_tree::IsTree;
2
3use crate::{prelude::*, Library};
4
5#[allow(missing_docs)]
6#[derive(Debug, Default, Clone, Serialize, Deserialize, PartialEq, IsTree)]
7#[tree(branches)]
8pub struct Registry {
9 pub libraries: Vec<Library>
10}
11
12impl Registry {
13 pub fn new() -> Self {
14 Self::default()
15 }
16}