Files
herolib/lib/installers/infra/zinit/zinit_model.v
Mahmoud Emad 4c01c88b85 WIP: Building hero
- The work is still in progress

Co-authored-by: supermario <mariobassem12@gmail.com>
2025-01-02 19:01:37 +02:00

27 lines
538 B
V

module zinit
import freeflowuniverse.herolib.data.paramsparser
import os
pub const version = '0.2.14'
const singleton = true
const default = true
// THIS THE THE SOURCE OF THE INFORMATION OF THIS FILE, HERE WE HAVE THE CONFIG OBJECT CONFIGURED AND MODELLED
pub struct Zinit {
pub mut:
name string = 'default'
}
fn obj_init(obj_ Zinit) !Zinit {
// never call get here, only thing we can do here is work on object itself
mut obj := obj_
return obj
}
// called before start if done
fn configure() ! {
// mut installer := get()!
}