16 lines
160 B
Go
16 lines
160 B
Go
|
|
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
|
||
|
|
}
|