Fix merge so server compiles

This commit is contained in:
Michael Hohn
2024-06-16 19:36:31 -07:00
committed by =Michael Hohn
parent 2c5ecd3a1e
commit b756668e70
5 changed files with 6 additions and 360 deletions

View File

@@ -32,20 +32,6 @@ type CommanderSingle struct {
func NewCommanderSingle(st *Visibles) *CommanderSingle {
c := CommanderSingle{}
c.st = st
setupEndpoints(&c)
return &c
}
type CommanderContainer struct {
st *Visibles
}
func NewCommanderContainer(st *Visibles) *CommanderContainer {
c := CommanderContainer{}
c.st = st
setupEndpoints(&c)
return &c