Files
herolib/lib/baobab/osis/factory.v
2025-03-24 06:44:39 +01:00

9 lines
121 B
V

module osis
pub fn new(config OSISConfig) !OSIS {
return OSIS{
indexer: new_indexer()!
storer: new_storer()!
}
}