mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-08 14:21:04 +00:00
07a9fa2dbd
### Purpose
🤫
34 lines
795 B
Go
34 lines
795 B
Go
// Copyright (C) 2023 The Syncthing Authors.
|
|
//
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
// You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
|
|
"github.com/alecthomas/kong"
|
|
"github.com/syncthing/syncthing/cmd/ursrv/aggregate"
|
|
"github.com/syncthing/syncthing/cmd/ursrv/serve"
|
|
_ "github.com/syncthing/syncthing/lib/automaxprocs"
|
|
)
|
|
|
|
type CLI struct {
|
|
Serve serve.CLI `cmd:"" default:""`
|
|
Aggregate aggregate.CLI `cmd:""`
|
|
}
|
|
|
|
func main() {
|
|
log.SetFlags(log.Ltime | log.Ldate | log.Lshortfile)
|
|
log.SetOutput(os.Stdout)
|
|
|
|
var cli CLI
|
|
ctx := kong.Parse(&cli)
|
|
if err := ctx.Run(); err != nil {
|
|
log.Fatalf("%s: %v", ctx.Command(), err)
|
|
}
|
|
}
|