Files
bbs-server/content/handler.go
2026-03-11 20:42:07 +01:00

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)
}