fixes for docu

This commit is contained in:
2024-12-25 21:48:03 +01:00
parent df86792bf0
commit 958daaa697
107 changed files with 5400 additions and 8589 deletions

View File

@@ -1,4 +1,5 @@
module python
import freeflowuniverse.herolib.data.paramsparser
import os
@@ -6,25 +7,21 @@ 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]
// THIS THE THE SOURCE OF THE INFORMATION OF THIS FILE, HERE WE HAVE THE CONFIG OBJECT CONFIGURED AND MODELLED
@[heap]
pub struct Python {
pub mut:
name string = 'default'
name string = 'default'
}
fn obj_init(obj_ Python)!Python{
//never call get here, only thing we can do here is work on object itself
mut obj:=obj_
panic("implement")
return obj
fn obj_init(obj_ Python) !Python {
// 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
// called before start if done
fn configure() ! {
//mut installer := get()!
// mut installer := get()!
}