github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/examples/gno.land/p/demo/mux/handler.gno (about)

     1  package mux
     2  
     3  type Handler struct {
     4  	Pattern string
     5  	Fn      HandlerFunc
     6  }
     7  
     8  type HandlerFunc func(*ResponseWriter, *Request)
     9  
    10  // TODO: type ErrHandlerFunc func(*ResponseWriter, *Request) error
    11  // TODO: NotFoundHandler
    12  // TODO: AutomaticIndex