Files
herolib/lib/installers/lang/golang/golang_model.v
2024-12-25 10:11:52 +01:00

26 lines
568 B
V

module golang
import freeflowuniverse.herolib.data.paramsparser
import os
pub const version = '1.23.1'
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 GolangInstaller {
pub mut:
name string = 'default'
}
fn obj_init(obj_ GolangInstaller) !GolangInstaller {
// 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()!
}