package main import ( "citrons.xyz/talk/client/window" "citrons.xyz/talk/client/buffer" "citrons.xyz/talk/tui" ) type emptyWindow struct { location window.Location } func (w emptyWindow) Location() window.Location { return w.location } func (w emptyWindow) Kill() {} func (w emptyWindow) Buffer() *buffer.Buffer { return &buffer.Buffer {} } func (w emptyWindow) Input() *tui.TextInput { return &tui.TextInput {} } func (w emptyWindow) Send(text string) {} func (w emptyWindow) ShowStatusLine() {} func (w emptyWindow) ShowComposingReply() {}