13 lines
204 B
V
13 lines
204 B
V
module doctreeclient
|
|
|
|
import freeflowuniverse.herolib.core.base
|
|
|
|
pub fn new() !&DocTreeClient {
|
|
mut context := base.context()!
|
|
mut redis := context.redis()!
|
|
|
|
return &DocTreeClient{
|
|
redis: redis
|
|
}
|
|
}
|