srs/internal/bootstrap/bootstrap.go
winlin 5ea9f573f2 Update copyright year from 2025 to 2026 across all source files
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-12 13:50:07 -04:00

16 lines
384 B
Go

// Copyright (c) 2026 Winlin
//
// SPDX-License-Identifier: MIT
package bootstrap
import (
"context"
)
// Bootstrap defines the interface for application bootstrap operations.
type Bootstrap interface {
// Start initializes the context with logger and signal handlers, then runs the bootstrap.
// Returns any error encountered during startup.
Start(ctx context.Context) error
}