draincloud-core/internal/server/server.go

16 lines
221 B
Go
Raw Normal View History

2024-09-27 22:37:58 +00:00
package server
import (
"context"
"net/http"
)
type Server struct {
mux *http.ServeMux // Mux
ctx context.Context // Global application context
}
func RegisterHandler(ctx context.Context, h http.HandlerFunc) {
}