wm/src/handler/domains/common.go

16 lines
160 B
Go
Raw Normal View History

2023-06-11 10:24:15 +00:00
package domains
import "tuxpa.in/t/wm/src/bsp"
type inject struct {
xwm
}
type xwm struct {
XWM *bsp.XWM
}
func (x xwm) SetXWM(z *bsp.XWM) {
x.XWM = z
}