16 lines
181 B
V
16 lines
181 B
V
module osis
|
|
|
|
import incubaid.herolib.data.ourdb { OurDB }
|
|
import os
|
|
|
|
pub struct Storer {
|
|
pub mut:
|
|
db OurDB
|
|
}
|
|
|
|
pub fn new_storer() !Storer {
|
|
return Storer{
|
|
db: ourdb.new()!
|
|
}
|
|
}
|