installers

This commit is contained in:
2024-12-25 20:53:37 +01:00
parent 7cbfb504d6
commit d458ccb7d0
52 changed files with 3416 additions and 35 deletions

View File

@@ -0,0 +1,30 @@
module actrunner
import freeflowuniverse.herolib.data.paramsparser
import os
pub const version = '0.0.0'
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
$[heap]
pub struct ActRunner {
pub mut:
name string = 'default'
}
fn obj_init(obj_ ActRunner)!ActRunner{
//never call get here, only thing we can do here is work on object itself
mut obj:=obj_
panic("implement")
return obj
}
//called before start if done
fn configure() ! {
//mut installer := get()!
}