Files
herolib/lib/baobab/osis/factory.v
2025-01-21 02:37:05 +00:00

9 lines
120 B
V

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