9 lines
160 B
Go
9 lines
160 B
Go
package content
|
|
|
|
import "bbs-server/engine"
|
|
|
|
// Handler is the common interface for all BBS menu handlers
|
|
type Handler interface {
|
|
Handle(s *engine.Session)
|
|
}
|