gotty/server/slave.go
kernel 2424e48e17 Imported the existing codebase and refactored it to work with the new build system.
Adjusted dependencies to use our own repository mirrors.
Modified the Makefile for proper build output and target directory.
2025-07-31 19:44:16 +03:00

17 lines
268 B
Go

package server
import (
"github.com/kernel-punk/gotty/webtty"
)
// Slave is webtty.Slave with some additional methods.
type Slave interface {
webtty.Slave
Close() error
}
type Factory interface {
Name() string
New(params map[string][]string) (Slave, error)
}