File tree Expand file tree Collapse file tree 12 files changed +24
-0
lines changed
Expand file tree Collapse file tree 12 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package apricot implements the ALICE configuration service with templating,
26+ // load balancing and caching capabilities on top of the configuration store.
2527package apricot
2628
2729import (
Original file line number Diff line number Diff line change 1+ // Package cacheproxy provides a caching proxy implementation for the
2+ // configuration service, optimizing detector inventory lookups.
13package cacheproxy
24
35import (
Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package local implements a local filesystem backend for the configuration
26+ // service, providing file-based configuration storage and retrieval.
2527package local
2628
2729import (
Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package remote implements a remote gRPC client backend for the configuration
26+ // service, providing access to remote configuration stores.
2527package remote
2628
2729import (
Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package app provides application constants and metadata for the coconut
26+ // command line interface and its components.
2527package app
2628
2729const (
Original file line number Diff line number Diff line change 2424
2525//go:generate protoc -I=../../core -I=../../common --go_out=.. --go_opt=paths=source_relative --go-grpc_opt=paths=source_relative --go-grpc_out=require_unimplemented_servers=false:.. protos/o2control.proto
2626
27+ // Package cmd implements the command line interface for coconut, providing
28+ // various subcommands for managing O² Control environments and configurations.
2729package cmd
2830
2931import (
Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package topic defines topic constants and types for the event system,
26+ // providing structured topic names for different event types.
2527package topic
2628
2729type Topic string
Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package event provides event publishing and streaming functionality for
26+ // O² Control components, supporting both Kafka and in-memory event systems.
2527package event
2628
2729import (
Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package utils provides common utility functions for string manipulation,
26+ // data conversion, and various helper operations used across O² Control components.
2527package utils
2628
2729import (
Original file line number Diff line number Diff line change 2222 * Intergovernmental Organization or submit itself to any jurisdiction.
2323 */
2424
25+ // Package configuration provides interfaces and implementations for managing
26+ // runtime configuration of O² Control components and detectors.
2527package configuration
2628
2729import (
You can’t perform that action at this time.
0 commit comments