Initial Bus implementation

This commit is contained in:
Ian Gulliver
2022-03-15 16:27:52 +00:00
parent eb60a6aacf
commit 88c24f1a40
5 changed files with 120 additions and 69 deletions

View File

@@ -1,14 +1,14 @@
package main
type Template struct {
Id string
Test string
Id string
Test string
}
func (t *Template) GetType() string {
return "template"
return "template"
}
func (t *Template) GetId() string {
return t.Id
return t.Id
}