srs/cmd/proxy/main.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

20 lines
309 B
Go

// Copyright (c) 2026 Winlin
//
// SPDX-License-Identifier: MIT
package main
import (
"context"
"os"
"srsx/internal/bootstrap"
)
func main() {
bs := bootstrap.NewProxyBootstrap()
if err := bs.Start(context.Background()); err != nil {
// Error already logged in bootstrap.Start().
os.Exit(-1)
}
}