draincloud-core/internal/server/server.go
2024-09-28 01:37:58 +03:00

16 lines
221 B
Go

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