Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 115 Bytes

handlers.md

File metadata and controls

9 lines (7 loc) · 115 Bytes

Handlers

Handlers should implement the Handler interface:

type Handler interface {
	Serve(*Context)
}