Files

14 lines
152 B
Go
Raw Normal View History

package controller
type Docking struct{}
type DockingHandle func()
func (c *Docking) Message() {
}
func NewDocking() DockingHandle {
return nil
}