20 lines
309 B
Go
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)
|
|
}
|
|
}
|