Files

6 lines
113 B
Go

package frontend
type Dispatcher interface {
ProcessMessage(message string, sender Frontend) (string, error)
}