加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.go 831 Bytes
一键复制 编辑 原始数据 按行查看 历史
boypt 提交于 2021-10-20 13:43 . startup info changes
package main
import (
"errors"
"fmt"
"log"
"os"
"runtime"
"strconv"
"time"
"github.com/boypt/simple-torrent/server"
"github.com/jpillora/opts"
)
var VERSION = "0.0.0-src" //set with ldflags
func main() {
s := server.Server{
Title: "SimpleTorrent",
Port: 3000, // depreciated
Listen: ":3000",
}
o := opts.New(&s)
o.Version(VERSION)
o.Repo("https://github.com/boypt/simple-torrent")
o.PkgRepo()
o.SetLineWidth(96)
o.Parse()
t := &server.TPLInfo{
Title: s.Title,
Version: VERSION,
Runtime: fmt.Sprintf("%s %d bit", runtime.Version(), strconv.IntSize),
Uptime: time.Now().Unix(),
}
if s.DisableLogTime {
log.SetFlags(0)
}
log.Print(t.GetInfo())
if err := s.Run(t); err != nil {
if errors.Is(err, server.ErrDiskSpace) {
log.Println(err)
os.Exit(42)
}
log.Fatal(err)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化