dae/main.go

33 lines
641 B
Go
Raw Permalink Normal View History

2023-01-23 18:54:21 +07:00
//go:build linux
/*
* SPDX-License-Identifier: AGPL-3.0-only
* Copyright (c) 2022-2024, daeuniverse Organization <dae@v2raya.org>
2023-01-23 18:54:21 +07:00
*/
package main
import (
"net/http"
"os"
"time"
2023-03-14 14:01:55 +07:00
"github.com/daeuniverse/dae/cmd"
"github.com/daeuniverse/dae/common/json"
jsoniter "github.com/json-iterator/go"
"github.com/json-iterator/go/extra"
// _ "net/http/pprof"
2023-01-23 18:54:21 +07:00
)
func main() {
// go http.ListenAndServe("0.0.0.0:8000", nil)
jsoniter.RegisterTypeDecoder("bool", &json.FuzzyBoolDecoder{})
2023-01-27 01:10:27 +07:00
extra.RegisterFuzzyDecoders()
http.DefaultClient.Timeout = 30 * time.Second
if err := cmd.Execute(); err != nil {
os.Exit(1)
2023-01-23 18:54:21 +07:00
}
2023-01-27 01:10:27 +07:00
os.Exit(0)
2023-01-23 18:54:21 +07:00
}