initial commit lets start

This commit is contained in:
Adrian Zuercher
2026-08-28 17:59:35 +02:00
commit 3ba5a189f3
48 changed files with 100075 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
package models
type PLCopenXML struct {
Project *Project `xml:"project"`
}
func NewPLCopenXML() *PLCopenXML {
plcopenxml := &PLCopenXML{}
plcopenxml.AddProject()
return plcopenxml
}
func (openXML *PLCopenXML) AddProject() *Project {
openXML.Project = &Project{
Xmlns: XMLNS_Project,
}
return openXML.Project
}