maot-shortner/internal/handlers/handler.go
2025-08-06 16:04:04 -03:00

7 lines
112 B
Go

package handlers
import "net/http"
type Handler interface {
Handle(w http.ResponseWriter, r *http.Request)
}