以后台形式运行golang程序

前端之家收集整理的这篇文章主要介绍了以后台形式运行golang程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

安装:

go get github.com/icattlecoder/godaemon

示例:

package main

import (
    _ "github.com/icattlecoder/godaemon"
    "log"
    "net/http"
)

func main() {
    mux := http.NewServeMux()
    mux.HandleFunc("/index",func(rw http.ResponseWriter,req *http.Request) {
        rw.Write([]byte("hello,golang!\n"))
    })
    log.Fatalln(http.ListenAndServe(":7070",mux))
}

运行

./example -d=true
~$ curl http://127.0.0.1:7070/index
hello,golang!
原文链接:https://www.f2er.com/go/190878.html

猜你在找的Go相关文章